.sponsors-header {
    text-align: center;
    padding: 50px 20px 50px;
    background-color: #032475;
    position: relative;
}

.sponsors-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
    margin-right: 10px;
    position: relative;
    top: 70%;
    transform: translateY(-70%);
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sponsor-card {
    background: #ffffff;
    border: 1.5px solid #f3b11f;
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 470px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.sponsor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(243, 177, 31, 0.2);
}

.sponsor-logo-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.sponsor-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.sponsor-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a1a;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sponsor-link-text {
    text-decoration: none;
    font-size: 1.20rem;
    color: #007bff;
    word-break: break-all;
    transition: color 0.2s ease;
    position: relative;
    top: -20px;
}

.sponsor-link-text:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Floating Action Buttons (Right Corner) */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp { background-color: #25d366; }
.float-messenger { background-color: #0084ff; }

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .sponsors-grid { grid-template-columns: 1fr; }
    .sponsors-header h2 { font-size: 2.2rem; }
    .sponsor-card { min-height: auto; }
}

.hero-logo {
    position: relative;
    display: inline-block;
    height: 100px;
}


@media screen and (max-width: 768px) {
    .sponsors-header {
        height: 200px;
    }

    .section-header {
        top: 50%;
        transform: translateY(-50%);
        position: relative;
    }

    .hero-logo {
        display: none;
    }

    .section-header h2 {
        font-size: 2.5rem;
        top: 0;
        transform: translateY(0);
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
}