/* Header Section */
.header-section {
    /* padding: 80px 0 100px; */
    background: linear-gradient(135deg, rgba(234, 0, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(234, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: 50px;
}

.header-text {
    flex: 1;
    min-width: 300px;
}

.logo {
    background: linear-gradient(135deg, #ea00ff 0%, #ff006e 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(234, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.main-title {
    font-size: clamp(1rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: clamp(1rem, 2vw, 2.0rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ea00ff 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0px;
    letter-spacing: -0.3px;
}

.header-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.header-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #ea00ff, #ff006e);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.header-image:hover img {
    transform: translateY(-5px);
}

/* Section Banner - Gradient Border Design */
.section-banner {
    font-family: var(--tc-heading-font-family) !important;
    font-weight: 600 !important;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, rgb(231 19 253), rgba(0, 0, 0, 0.12), rgb(254 2 1)) border-box;
    background-size: 100% 100%, 200% 200%;
    animation: dropdownBorderGlow 3s linear infinite;
    color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 10px;
    display: block;
    width: 100%;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Hover effects */
.section-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(234, 0, 255, 0.15);
    color: #ea00ff;
}

@keyframes dropdownBorderGlow {
    0% {
        background-position: 0% 50%, 0% 50%;
    }

    100% {
        background-position: 0% 50%, 200% 50%;
    }
}

/* Content Sections */
.content-section {
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ea00ff, #ff006e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-box:hover {
    box-shadow: 0 8px 30px rgba(234, 0, 255, 0.1);
    transform: translateY(-2px);
}

.content-box:hover::before {
    opacity: 1;
}

.content-box h2 {
    color: #1a1a1a;
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.content-box p {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Mission and Goals */
.mission-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mission-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.mission-list li {
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
}

.mission-list li:before {
    content: "✓";
    color: #ffffff;
    background: linear-gradient(135deg, #ea00ff, #ff006e);
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mission-conclusion {
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-top: 30px;
    font-style: italic;
    padding: 20px;
    background: linear-gradient(135deg, rgba(234, 0, 255, 0.05), rgba(255, 0, 110, 0.05));
    border-radius: 12px;
    border-left: 4px solid #ea00ff;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-box {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.activity-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 0, 255, 0.15);
    border-color: #ea00ff;
}

.activity-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ea00ff, #ff006e);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(234, 0, 255, 0.3);
}

.activity-title {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.activity-list {
    list-style: none;
    padding-left: 0;
}

.activity-list li {
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.activity-list li:before {
    content: "→";
    color: #ea00ff;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Achievements Section */
.achievements-intro {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.achievements-list {
    list-style: none;
    padding-left: 0;
}

.achievements-list li {
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-left: 36px;
    position: relative;
    line-height: 1.8;
}

.achievements-list li:before {
    content: "✓";
    color: #ffffff;
    background: linear-gradient(135deg, #28a745, #20c997);
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Join Us Section */
.join-list {
    list-style: none;
    padding-left: 0;
}

.join-list li {
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-left: 36px;
    position: relative;
    line-height: 1.8;
}

.join-list li:before {
    content: "→";
    color: #ffffff;
    background: linear-gradient(135deg, #ea00ff, #ff006e);
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.join-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.email-contact {
    background: linear-gradient(135deg, rgba(234, 0, 255, 0.08), rgba(255, 0, 110, 0.08));
    border: 2px solid rgba(234, 0, 255, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 30px;
    font-size: 1.15rem;
    color: #1a1a1a;
    text-align: center;
    transition: all 0.3s ease;
}

.email-contact:hover {
    border-color: #ea00ff;
    box-shadow: 0 4px 16px rgba(234, 0, 255, 0.15);
}

.email-contact strong {
    background: linear-gradient(135deg, #ea00ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Legal Registration */
.legal-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 4px solid #ea00ff;
    padding: 50px 0;
    margin-top: 100px;
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ea00ff, transparent);
}

.legal-title {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.legal-info {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.9;
}

.legal-info p {
    margin-bottom: 12px;
}

.legal-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-section {
        /* padding: 50px 0 70px; */
    }

    .main-title {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .header-content {
        flex-direction: column;
        gap: 40px;
    }

    .section-banner {
        font-size: 1.2rem;
        padding: 15px;
        margin: 20px 0px;
        width: calc(100% - 6px);
        letter-spacing: 1.2px;
    }

    .content-box {
        padding: 30px 25px;
    }

    .content-box h2 {
        font-size: 1.6rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .activity-box {
        padding: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(234, 0, 255, 0.2);
    color: #1a1a1a;
}

.activities-container {
    margin: 0 50px;
}


.masonry-gallery {
    column-count: 4;
    column-gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item a {
    display: block;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .masonry-gallery {
        column-count: 1;
    }
}

.footer-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e6 50%, #fff0f5 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23e91e63' d='M0,60 Q360,0 720,60 T1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    animation: waveAnimation 10s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes waveAnimation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
}

.footer-content .row {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column-header {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #ad1457 100%);
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.footer-column-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.footer-column-body {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    padding: 30px 25px;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 0 0 1px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column:hover .footer-column-body {
    box-shadow: 
        0 12px 35px rgba(233, 30, 99, 0.15),
        0 0 0 1px rgba(233, 30, 99, 0.2);
    transform: translateY(-3px);
    border-top-color: #e91e63;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 8px;
    position: relative;
}

.footer-link-list a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    background: #f5f5f5;
    border: none;
}

.footer-link-list a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #e91e63;
    border-radius: 2px;
    margin-right: 12px;
}

.footer-link-list a span {
    margin-left: 32px;
    flex: 1;
}

.footer-link-list a:hover {
    color: #e91e63;
    background: #eeeeee;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* border: 1px solid transparent; */
    border-left: 3px solid #e91e63;
    background: rgba(233, 30, 99, 0.03);
    transform: translateX(5px);
}

.footer-contact-item:hover {
    /* background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(194, 24, 91, 0.05) 100%);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateX(5px); */
    background: rgba(233, 30, 99, 0.08);
    transform: translateX(5px);
}

.footer-contact-item:last-of-type {
    margin-bottom: 10px;
}

.footer-contact-item i {
    color: #fff;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    margin-right: 15px;
    margin-top: 2px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.footer-contact-item span {
    color: #444;
    flex: 1;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 8px;
}

.footer-donate-btn {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #ad1457 100%);
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.footer-donate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-donate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-donate-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.footer-donate-btn i {
    position: relative;
    z-index: 1;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-donate-btn span {
    position: relative;
    z-index: 1;
}

.footer-subscribe-form {
    margin-bottom: 25px;
}

.footer-subscribe-input {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 18px;
    width: 100%;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.footer-subscribe-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.footer-subscribe-btn {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.footer-subscribe-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-subscribe-btn:hover::after {
    width: 300px;
    height: 300px;
}

.footer-subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.footer-subscribe-btn:active {
    transform: translateY(-1px);
}

.footer-social-icons {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
}

.footer-social-icon {
    color: #444;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    color: #fff;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    background: rgba(233, 30, 99, 0.08);
    transform: translateX(5px);
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon:hover i {
    transform: scale(1.2);
}

.footer-editorial-info {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-editorial-info p {
    margin-bottom: 15px;
    color: #444;
    padding: 12px;
    background: rgba(233, 30, 99, 0.03);
    border-radius: 8px;
    border-left: 3px solid #e91e63;
    transition: all 0.3s ease;
    
}

.footer-editorial-info p:hover {
    background: rgba(233, 30, 99, 0.08);
    transform: translateX(5px);
}

.footer-editorial-info strong {
    color: #e91e63;
    font-weight: 700;
}

.footer-copyright {
    background: linear-gradient(135deg, #fd0100, #e700ff);;
    color: #fff;
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: -100px;
    box-shadow: 0 -5px 20px rgba(233, 30, 99, 0.3);
}

.footer-copyright p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    color: #fff;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    font-size: 1.2rem;
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.scroll-top-btn:hover::before {
    opacity: 0.6;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-5px) scale(1.1); }
    50% { transform: translateY(-10px) scale(1.15); }
}

.scroll-top-btn i {
    animation: arrowUp 2s ease-in-out infinite;
}

@keyframes arrowUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-link-list a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .footer-link-list a .link-icon {
        width: 7px;
        height: 7px;
        margin-right: 10px;
    }
    
    .footer-link-list a:hover .link-icon {
        width: 10px;
        height: 10px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}