/*
 * A Fantástica Aventura do Circo - Patrocínio Styles
 * Escola Maria Cacko Ballet Infantil
 */

/* ===== Sponsor Hero Section ===== */
.sponsor-hero {
    min-height: 650px;
}

.sponsor-title {
    color: var(--color-dark);
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 0 var(--color-primary-dark);
    animation: fadeIn 1s ease forwards 0.3s;
    opacity: 0;
}

/* ===== Purpose Section ===== */
.purpose-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    text-align: center;
}

.purpose-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.purpose-grid {
        display: flex;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
}

.purpose-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(189, 120, 200, 0.1);
    max-width: 360px;
}

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

.purpose-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    position: relative;
}

.purpose-icon i {
    color: #fff;
    width: 35px;
    height: 35px;
}

.purpose-icon .fluent-emoji {
    font-size: 50px;
    line-height: 1;
}

.animated-card {
    transition: transform 0.4s ease;
    will-change: transform;
}

.animated-card:hover {
    transform: translateY(-10px);
}

.animated-card:hover .purpose-icon {
    animation: pulse 1.5s ease-in-out;
    animation-iteration-count: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.purpose-card h3 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.purpose-card p {
    font-size: 1.6rem;
    color: #666;
}

/* ===== Why Sponsor Section ===== */
.why-sponsor-section {
    background-color: rgba(249, 195, 212, 0.1);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.why-sponsor-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.why-sponsor-text {
    flex: 1;
}

.why-sponsor-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: #333;
}

.why-sponsor-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-mascot {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(91, 42, 138, 0.3));
}

.highlight-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-sm);
}

.sponsor-benefits {
    margin-top: var(--spacing-md);
}

.sponsor-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.sponsor-benefits li i {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== Numbers Section ===== */
.numbers-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fff 0%, rgba(249, 231, 159, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23BD78C8" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.numbers-section .container {
    position: relative;
    z-index: 1;
}

.numbers-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent);
    pointer-events: none;
    z-index: 0;
}

/* Decorative elements */
.numbers-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.number-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(189, 120, 200, 0.8) 0%, rgba(189, 120, 200, 0) 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.number-decoration-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 231, 159, 0.8) 0%, rgba(249, 231, 159, 0) 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.number-decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(178, 224, 243, 0.8) 0%, rgba(178, 224, 243, 0) 70%);
    top: 40%;
    left: 10%;
    animation-delay: 2.5s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.numbers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.numbers-intro p {
    font-size: 2rem;
    color: var(--color-dark);
}

/* Digital Presence Card */
.digital-presence {
    margin: 0 auto var(--spacing-xl);
    max-width: 900px;
    text-align: center;
}

.digital-presence-card {
    background: linear-gradient(to bottom, #fff, #f9f9f9);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--color-primary);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-presence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(189, 120, 200, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
    pointer-events: none;
}

.digital-presence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 120, 200, 0.2);
}

.digital-presence-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.digital-presence-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.digital-presence-header i {
    width: 40px;
    height: 40px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.digital-presence-header h3 {
    font-size: 2.4rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.digital-presence-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.digital-presence-card:hover .digital-presence-header h3::after {
    transform: scaleX(1);
}

.digital-presence-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
}

.digital-presence-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.digital-presence-stats::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.digital-presence-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(189, 120, 200, 0.1);
    height: 100%;
}

.digital-presence-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    transition: height 0.3s ease;
}

.digital-presence-stat:hover::before {
    height: 100%;
}

.digital-presence-stat.animated-stat {
    opacity: 0;
    transform: translateY(20px);
}

.digital-presence-stat.animated-stat.animate-in {
    animation: fadeInUp 0.5s forwards;
}

.digital-presence-stat:nth-child(2).animate-in {
    animation-delay: 0.1s;
}

.digital-presence-stat:nth-child(3).animate-in {
    animation-delay: 0.2s;
}

.digital-presence-stat:nth-child(4).animate-in {
    animation-delay: 0.3s;
}

.digital-presence-stat:nth-child(5).animate-in {
    animation-delay: 0.4s;
}

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

.digital-presence-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.9);
}

.instagram-embed {
    margin: var(--spacing-md) auto;
    max-width: 540px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.instagram-animated-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.instagram-link {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.instagram-animated-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    animation: subtle-pulse 3s infinite alternate;
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

.instagram-link:hover .instagram-animated-image {
    transform: scale(1.05);
    animation-play-state: paused;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.instagram-overlay i {
    width: 40px;
    height: 40px;
    color: white;
    margin-bottom: 10px;
}

.instagram-overlay span {
    font-size: 1.6rem;
    font-weight: 600;
}

.instagram-link:hover .instagram-overlay {
    opacity: 1;
}

.instagram-caption {
    padding: 12px 16px;
    margin: 0;
    font-size: 1.4rem;
    color: #8e8e8e;
    text-align: center;
    background-color: white;
    border-top: 1px solid #efefef;
}

.digital-presence-stat:hover {
    background-color: rgba(189, 120, 200, 0.1);
    transform: translateX(10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(189, 120, 200, 0.1), rgba(255, 255, 255, 0));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(189, 120, 200, 0.1);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.digital-presence-stat:hover .stat-icon::before {
    opacity: 1;
}

.digital-presence-stat:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(189, 120, 200, 0.2);
}

.stat-icon i {
    color: #fff;
    width: 25px;
    height: 25px;
}

.stat-icon .fluent-emoji {
    font-size: 45px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.digital-presence-stat:hover .stat-icon .fluent-emoji {
    transform: scale(1.1);
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.stat-info {
    flex: 1;
    position: relative;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.digital-presence-stat:hover .stat-info {
    transform: translateX(5px);
}

.stat-info h4 {
    font-size: 2.4rem;
    margin: 0 0 8px 0;
    color: var(--color-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.stat-info h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.digital-presence-stat:hover .stat-info h4::after {
    width: 100%;
}

.stat-info p {
    font-size: 1.6rem;
    margin: 0;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.digital-presence-stat:hover .stat-info p {
    color: var(--color-primary-dark);
}

.stat-info .stat-highlight {
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.stat-info .stat-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(189, 120, 200, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.digital-presence-stat:hover .stat-info .stat-highlight::before {
    height: 100%;
}

/* Numbers Section */
.numbers-section .section-header {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.numbers-section .section-header::before,
.numbers-section .section-header::after {
    content: '';
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    width: 150px;
    top: 50%;
    transform: translateY(-50%);
}

.numbers-section .section-header::before {
    left: calc(50% - 200px);
}

.numbers-section .section-header::after {
    right: calc(50% - 200px);
}

.numbers-header h2 {
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.numbers-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.numbers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.numbers-intro p {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.numbers-highlight {
    background-color: rgba(189, 120, 200, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

/* Numbers Dashboard */
.numbers-dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) auto;
    max-width: 1200px;
}

.numbers-column {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.dashboard-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    position: relative;
}

.dashboard-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.number-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 200px; /* Fixed height for all cards */
    border: 2px solid rgba(189, 120, 200, 0.1);
    width: 100%;
}

.premium-card {
    background: linear-gradient(to bottom right, #fff, #f9f9f9);
    border-left: 4px solid var(--color-primary);
}

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

.number-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.number-icon i {
    color: #fff;
    width: 30px;
    height: 30px;
}

.number-icon .fluent-emoji {
    font-size: 45px;
    line-height: 1;
}

.number-card.animated-card:hover {
    transform: translateY(-8px);
}

.number-card.animated-card:hover .number-icon {
    animation: wobble 0.8s ease;
    animation-iteration-count: 1;
}

@keyframes wobble {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-3deg); }
    50% { transform: translateX(5px) rotate(3deg); }
    75% { transform: translateX(-3px) rotate(-1deg); }
}

.number-content {
    flex: 1;
    padding-left: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.number-card h3 {
    font-size: 2.4rem;
    color: var(--color-dark);
    margin-bottom: 5px;
    text-align: left;
}

.number-card p {
    font-size: 1.6rem;
    color: #666;
    text-align: left;
    margin-bottom: 15px;
}

/* Progress bars */
.progress-container {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

.progress-text {
    position: absolute;
    right: 5px;
    top: -5px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* Location tags */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.location-tag {
    background-color: rgba(189, 120, 200, 0.1);
    color: var(--color-primary-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-tag:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* City map */
.city-map {
    position: relative;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(178, 224, 243, 0.2), rgba(178, 224, 243, 0.4));
    border-radius: var(--border-radius-md);
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(178, 224, 243, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(189, 120, 200, 0.5), transparent);
    transform: translateY(-50%);
}

.city-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23BD78C8" opacity="0.1"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.city-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(189, 120, 200, 0.2);
    animation: pulse-dot 2s infinite;
    font-size: 1.2rem;
    color: var(--color-dark);
    white-space: nowrap;
}

.city-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-primary);
    z-index: -1;
}

.city-dot::after {
    content: attr(data-city);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.city-connection {
    position: absolute;
    top: 35%;
    left: 30%;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    transform: rotate(-10deg);
    z-index: 1;
    opacity: 0.7;
    overflow: hidden;
}

.city-connection::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: flow 3s infinite linear;
}

@keyframes flow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.city-connection .dot-start,
.city-connection .dot-end {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    top: -2px;
    z-index: 2;
}

.city-connection .dot-start {
    left: 0;
}

.city-connection .dot-end {
    right: 0;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(189, 120, 200, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(189, 120, 200, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(189, 120, 200, 0);
    }
}

/* Star rating */
.star-rating {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 10px;
}

.star {
    color: var(--color-accent);
    font-size: 2.4rem;
    animation: star-pulse 2s infinite alternate;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Testimonial preview */
.testimonial-preview {
    background-color: rgba(249, 231, 159, 0.2);
    border-radius: var(--border-radius-md);
    padding: 10px;
    margin-top: 10px;
    position: relative;
}

.testimonial-preview i {
    color: var(--color-primary);
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-dark);
    margin: 0;
    padding-left: 20px;
}

/* Numbers CTA */
.numbers-cta {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    padding: var(--spacing-md);
    background-color: rgba(189, 120, 200, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px dashed var(--color-primary);
}

.numbers-cta p {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.numbers-cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.numbers-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.numbers-cta-button:hover::after {
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    text-align: center;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.gallery-intro p {
    font-size: 2rem;
    color: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: 0 auto var(--spacing-lg);
    max-width: 1200px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* ===== Previous Sponsors Section ===== */
.sponsors-section {
    padding: var(--spacing-xl) 0;
    background-color: rgba(249, 231, 159, 0.1);
    text-align: center;
}

.sponsors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.sponsors-intro p {
    font-size: 2rem;
    color: var(--color-dark);
}

.sponsors-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin: 0 auto var(--spacing-lg);
}

.sponsor-logo-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
}

.sponsor-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sponsor-logo-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: grayscale(20%)  ;
    animation: pulse-subtle 3s infinite alternate;
}

.sponsor-logo-card:hover .animated-sponsor-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
    animation: bounce 0.8s ease infinite alternate;
}

@keyframes pulse-subtle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0% {
        transform: scale(1) rotate(-2deg);
    }
    100% {
        transform: scale(1.1) rotate(2deg);
    }
}

.sponsors-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-md);
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.sponsors-testimonial::before {
    content: '\201C';
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
}

.sponsors-testimonial blockquote {
    margin: 0;
    padding: 0;
}

.sponsors-testimonial p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.sponsors-testimonial cite {
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    font-style: normal;
    font-weight: 600;
}

/* ===== Plans Section ===== */
.plans-section {
    padding: var(--spacing-xl) 0;
    background-color: rgba(249, 231, 159, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23BD78C8" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.plans-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 0;
}

.plans-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(189, 120, 200, 0.8) 0%, rgba(189, 120, 200, 0) 70%);
    top: -100px;
    right: -100px;
    animation: float-decoration 20s infinite ease-in-out alternate;
}

.plans-decoration-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 231, 159, 0.8) 0%, rgba(249, 231, 159, 0) 70%);
    bottom: -150px;
    left: -150px;
    animation: float-decoration 25s infinite ease-in-out alternate-reverse;
}

.plans-decoration-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(178, 224, 243, 0.8) 0%, rgba(178, 224, 243, 0) 70%);
    top: 30%;
    left: 10%;
    animation: float-decoration 15s infinite ease-in-out alternate;
}

.plans-decoration-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(189, 120, 200, 0.5) 0%, rgba(189, 120, 200, 0) 70%);
    bottom: 20%;
    right: 10%;
    animation: float-decoration 18s infinite ease-in-out alternate-reverse;
}

@keyframes float-decoration {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.plans-header h2 {
    position: relative;
    display: inline-block;
    animation: bounce-text 2s infinite alternate ease-in-out;
}

@keyframes bounce-text {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.fun-emoji {
    display: inline-block;
    margin-left: 10px;
    animation: spin-emoji 3s infinite linear;
    font-size: 3rem;
    vertical-align: middle;
}

@keyframes spin-emoji {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.plans-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.plans-intro p {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.plans-tagline {
    background-color: rgba(189, 120, 200, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.plans-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-tagline 3s infinite;
}

@keyframes shine-tagline {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.fun-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sponsor-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) auto;
    max-width: 1200px;
    width: 100%;
}

.sponsor-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.plan-silver {
    background: linear-gradient(to bottom, #fff, #f5f5f5);
}

.plan-gold {
    background: linear-gradient(to bottom, #fffdf0, #fff9e0);
}

.plan-diamond {
    background: linear-gradient(to bottom, #f0f8ff, #e6f2ff);
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: card-shine 5s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes card-shine {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.card-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect x="15" y="15" width="2" height="2" fill="%23F9E79F" /><circle cx="25" cy="10" r="1" fill="%23BD78C8" /><rect x="30" y="25" width="3" height="3" fill="%23F9E79F" transform="rotate(45)" /></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.card-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M20 5 L22 15 L30 15 L24 20 L26 30 L20 25 L14 30 L16 20 L10 15 L18 15 Z" fill="none" stroke="%23B2E0F3" stroke-width="0.5" /></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

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

.animated-sponsor-card {
    transition: transform 0.4s ease;
    will-change: transform;
}

.animated-sponsor-card:hover {
    transform: translateY(-8px);
}

/* Simplified gradient effect for better performance */
.animated-sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.animated-sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--color-primary);
    position: relative;
    z-index: 2;
}

.sponsor-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.sponsor-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.plan-silver .sponsor-header {
    background: linear-gradient(135deg, #a0a0a0, #c0c0c0);
}

.plan-gold .sponsor-header {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.plan-diamond .sponsor-header {
    background: linear-gradient(135deg, #b9d9eb, #8abbd7);
}

.sponsor-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    overflow: hidden;
    z-index: 2;
}

.sponsor-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent rgba(255, 255, 255, 0.3) transparent transparent;
}

.plan-silver .sponsor-ribbon::before {
    border-color: transparent #e0e0e0 transparent transparent;
}

.plan-gold .sponsor-ribbon::before {
    border-color: transparent #ffe066 transparent transparent;
}

.plan-diamond .sponsor-ribbon::before {
    border-color: transparent #d6ebf7 transparent transparent;
}

.sponsor-icon {
    font-size: 3.5rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.animated-icon {
    display: inline-block;
    animation: float-icon 3s ease-in-out infinite alternate;
}

@keyframes float-icon {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.sponsor-header h3 {
    font-size: 2.4rem;
    margin: 0;
}

.featured-tag, .exclusive-tag {
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    transform: rotate(5deg);
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.featured-tag {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.exclusive-tag {
    background-color: #d6ebf7;
    color: #2980b9;
    border: 1px solid #8abbd7;
}

.animated-tag {
    animation: pulse-tag 3s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.sponsor-card:hover .animated-tag {
    animation-play-state: running;
}

@keyframes pulse-tag {
    0% {
        transform: rotate(5deg) scale(1);
    }
    100% {
        transform: rotate(8deg) scale(1.1);
    }
}

.sponsor-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sponsor-features {
    margin-bottom: var(--spacing-md);
}

.sponsor-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.animated-feature {
    opacity: 0.9;
    transform: translateX(-3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: opacity, transform;
}

.animated-sponsor-card:hover .animated-feature {
    opacity: 1;
    transform: translateX(0);
}

/* Reduced number of staggered animations for better performance */
.animated-sponsor-card:hover .animated-feature:nth-child(1) { transition-delay: 0.03s; }
.animated-sponsor-card:hover .animated-feature:nth-child(2) { transition-delay: 0.06s; }
.animated-sponsor-card:hover .animated-feature:nth-child(3) { transition-delay: 0.09s; }
.animated-sponsor-card:hover .animated-feature:nth-child(4) { transition-delay: 0.12s; }
.animated-sponsor-card:hover .animated-feature:nth-child(5) { transition-delay: 0.15s; }
.animated-sponsor-card:hover .animated-feature:nth-child(n+6) { transition-delay: 0.18s; }

.sponsor-features li i {
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.animated-sponsor-card:hover .sponsor-features li i {
    transform: scale(1.2) rotate(360deg);
}

.sponsor-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.animated-price {
    position: relative;
}

.animated-sponsor-card:hover .animated-price {
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
    transition: all 0.3s ease;
}

.animated-sponsor-card:hover .price {
    color: var(--color-primary);
}

.price-detail {
    font-size: 1.4rem;
    color: #666;
    display: block;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.animated-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.animated-sponsor-card:hover .animated-button::after {
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.sponsor-card .btn-secondary,
.sponsor-card .btn-primary {
    margin: 0 var(--spacing-md) var(--spacing-md);
    text-align: center;
}

.plans-notes {
    margin-top: var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.note-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(189, 120, 200, 0.1);
    max-width: 400px;
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.plans-notes p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    font-size: 1.6rem;
    color: #666;
}

.plans-notes p i {
    color: var(--color-primary);
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.plans-mascot {
    position: relative;
    margin: var(--spacing-xl) auto 0;
    max-width: 200px;
    z-index: 1;
}

.plans-mascot-image {
    width: 100%;
    height: auto;
    animation: float-mascot 3s infinite ease-in-out alternate;
}

@keyframes float-mascot {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.mascot-speech-bubble {
    position: absolute;
    top: -60px;
    right: -100px;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-md);
    max-width: 200px;
    text-align: center;
    border: 2px solid var(--color-primary);
}

.mascot-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
}

.mascot-speech-bubble p {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

/* ===== Video Message Section ===== */
.video-message-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    text-align: center;
}

.video-message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-message-content p {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.video-button-container {
    margin: var(--spacing-lg) 0;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.close-video {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--color-dark);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: var(--color-primary);
}

.video-placeholder i {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
}

.video-placeholder p {
    font-size: 2rem;
    font-weight: 600;
}

/* ===== Sponsor CTA Section ===== */
.sponsor-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
}

.sponsor-cta .cta-content h2,
.sponsor-cta .cta-content p {
    color: #fff;
}

/* Developer Credit Animation */
.developer-credit {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.developer-credit:hover {
    transform: translateY(-2px);
    color: var(--color-primary);
}

.animated-link {
    position: relative;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.animated-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.animated-link:hover {
    color: var(--color-accent);
}

.animated-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    background-color: var(--color-accent);
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .why-sponsor-content {
        flex-direction: column;
    }

    .why-sponsor-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    .sponsor-cards {
        flex-direction: column;
        align-items: center;
    }

    .sponsor-card {
        max-width: 500px;
        width: 100%;
    }

    .sponsor-card.featured {
        transform: scale(1);
    }

    .sponsor-card.featured:hover {
        transform: translateY(-10px);
    }

    .digital-presence-content {
        grid-template-columns: 1fr;
    }

    .purpose-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .sponsor-title {
        font-size: 3.2rem;
    }

    .highlight-text {
        font-size: 1.8rem;
    }

    .fun-text {
        font-size: 1.8rem;
    }

    .plans-mascot {
        max-width: 150px;
    }

    .mascot-speech-bubble {
        right: -50px;
        max-width: 150px;
    }

    .note-card {
        width: 100%;
    }

    .numbers-section .section-header::before,
    .numbers-section .section-header::after {
        width: 80px;
    }

    .numbers-section .section-header::before {
        left: calc(50% - 120px);
    }

    .numbers-section .section-header::after {
        right: calc(50% - 120px);
    }

    .number-decoration-1 {
        width: 200px;
        height: 200px;
    }

    .number-decoration-2 {
        width: 250px;
        height: 250px;
    }

    .number-decoration-3 {
        width: 150px;
        height: 150px;
    }

    .numbers-grid,
    .digital-presence-stats,
    .sponsors-grid,
    .numbers-dashboard {
        max-width: 100%;
    }

    .numbers-column {
        min-width: 280px;
    }

    .dashboard-title {
        font-size: 1.8rem;
    }

    .number-card {
        min-height: 140px;
    }

    .number-card h3 {
        font-size: 2rem;
    }

    .number-card p {
        font-size: 1.4rem;
    }

    .star {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

    .purpose-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .digital-presence-stat {
        padding: var(--spacing-xs);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-info h4 {
        font-size: 1.6rem;
    }

    .stat-info p {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .sponsor-title {
        font-size: 2.8rem;
    }

    .highlight-text {
        font-size: 1.6rem;
    }

    .numbers-section .section-header::before,
    .numbers-section .section-header::after {
        display: none;
    }

    .numbers-section::before {
        opacity: 0.3;
    }

    .number-decoration-1,
    .number-decoration-2,
    .number-decoration-3 {
        opacity: 0.1;
        filter: blur(30px);
    }

    .number-decoration-1 {
        width: 150px;
        height: 150px;
        right: -50px;
    }

    .number-decoration-2 {
        width: 180px;
        height: 180px;
        left: -80px;
    }

    .number-decoration-3 {
        width: 100px;
        height: 100px;
    }

    .numbers-intro p {
        font-size: 1.6rem;
    }

    .numbers-column {
        min-width: 100%;
    }

    .number-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-sm);
        height: auto;
        min-height: 220px;
    }

    .number-content {
        padding-left: 0;
        padding-top: var(--spacing-sm);
        align-items: center;
    }

    .numbers-column {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .numbers-dashboard {
        gap: var(--spacing-md);
    }

    .number-card h3,
    .number-card p {
        text-align: center;
    }

    .star-rating,
    .location-tags,
    .progress-container,
    .testimonial-preview {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    .city-map {
        height: 80px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .city-dot::after {
        font-size: 1rem;
        padding: 1px 4px;
    }

    .city-connection {
        top: 40%;
    }

    .numbers-cta p {
        font-size: 1.6rem;
    }

    .number-card {
        min-height: 180px;
    }

    .number-icon {
        width: 50px;
        height: 50px;
    }

    .number-card h3 {
        font-size: 2rem;
    }

    .sponsor-features li {
        font-size: 1.4rem;
    }

    .purpose-card {
        padding: var(--spacing-sm);
    }

    .purpose-icon {
        width: 50px;
        height: 50px;
    }

    .purpose-icon i {
        width: 25px;
        height: 25px;
    }

    .purpose-card h3 {
        font-size: 1.8rem;
    }

    .purpose-card p {
        font-size: 1.4rem;
    }

    .sponsors-grid,
    .numbers-grid,
    .digital-presence-stats {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }


    .gallery-item {
        height: 200px;
    }

    .sponsor-logo-card {
        height: 120px;
    }

    .sponsors-testimonial p {
        font-size: 1.6rem;
    }

    .sponsors-testimonial cite {
        font-size: 1.4rem;
    }

    .digital-presence-header h3 {
        font-size: 2rem;
    }
}
