
/* Sponsors Page CSS */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.sponsors-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('/images/ticket.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.sponsors-hero .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.sponsors-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.sponsors-hero .hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #f0f0f0;
}

/* Current Sponsors */
.current-sponsors {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.sponsor-tiers {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tier h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
    font-size: 1.5rem;
}

.tier.platinum h3 {
    color: #e5e4e2;
    border-bottom-color: #e5e4e2;
}

.tier.gold h3 {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.tier.silver h3 {
    color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

.tier.bronze h3 {
    color: #cd7f32;
    border-bottom-color: #cd7f32;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.sponsor-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
}

.sponsor-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sponsor-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.sponsor-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.sponsor-link i {
    font-size: 0.8rem;
}

/* Donation Section */
.donation-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.donation-header {
    text-align: center;
    margin-bottom: 50px;
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.donation-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.crypto-donation {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.crypto-donation h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.crypto-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.crypto-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.crypto-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.crypto-card:nth-child(1) .crypto-icon {
    background-color: rgba(247, 147, 26, 0.1);
    color: #f7931a; /* Bitcoin orange */
}

.crypto-card:nth-child(2) .crypto-icon {
    background-color: rgba(0, 163, 157, 0.1);
    color: #00a39d; /* USDT teal */
}

.crypto-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.crypto-address {
    margin-bottom: 25px;
}

.address-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.address-display {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 12px 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.dark-theme .address-display {
    background-color: rgba(255, 255, 255, 0.05);
}

.copy-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

.address-input {
    margin-top: 20px;
    margin-bottom: 25px;
}

.address-input label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 0.95rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.input-group button {
    white-space: nowrap;
}

.input-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 0;
}

.crypto-qr {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.crypto-qr img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    background-color: white;
}

.qr-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.donation-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(255, 140, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.note i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.note p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Previous Sponsors */
.previous-sponsors {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.previous-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.previous-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.previous-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.previous-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.previous-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.previous-logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.previous-logo span {
    font-size: 0.85rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 600;
}

.donors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.donor {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.donor:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.donor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 140, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.donor-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.donor-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.become-sponsor {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.become-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.become-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.become-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.become-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 50px auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #25D366;
}

.modal-body h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .donation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .crypto-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .main-content {
        margin-top: 70px;
    }
    
    .sponsors-hero h1 {
        font-size: 2.2rem;
    }
    
    .sponsors-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .sponsors-hero .hero-description {
        font-size: 1rem;
    }
    
    .previous-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .donation-notes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .become-sponsor {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .become-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .sponsors-hero {
        padding: 60px 0;
    }
    
    .sponsors-hero h1 {
        font-size: 1.8rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .previous-logos {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .crypto-qr img {
        max-width: 130px;
    }
    
    .modal-content {
        margin: 20px auto;
    }
}

@media (max-width: 576px) {
    .sponsor-card {
        flex-direction: column;
    }
    
    .sponsor-logo {
        height: 150px;
        padding: 20px;
    }
    
    .sponsor-info {
        padding: 20px;
    }
    
    .crypto-card {
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .become-sponsor {
        padding: 25px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}





/* =========================================== */
/* MODERN PROFESSIONAL FOOTER STYLES */
/* =========================================== */

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    padding-top: 60px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-description {
    color: var(--footer-text);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Newsletter */
.footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
    padding: 12px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--footer-text);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    padding: 4px 0;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    margin-top: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text p {
    margin: 0;
    color: var(--footer-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Middle Section (Social Media) */
.footer-middle {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h4 {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 140, 0, 0.2);
    color: var(--secondary-color);
}

.social-icon.facebook:hover {
    background-color: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.social-icon.instagram:hover {
    background-color: rgba(225, 48, 108, 0.2);
    color: #E1306C;
}

.social-icon.tiktok:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: orange;
}

.social-icon.youtube:hover {
    background-color: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.social-icon i {
    font-size: 1.1rem;
}

.social-icon span {
    font-weight: 500;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: var(--footer-text);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--footer-text);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Design Credit */
.design-credit {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--footer-text);
    font-size: 0.9rem;
}

.design-credit i {
    color: #ff4757;
    margin: 0 5px;
}

.designer {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 5px;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.8;
    z-index: 100;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =========================================== */
/* RESPONSIVE STYLES FOR FOOTER */
/* =========================================== */

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slideshow {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 20px 10px;
    }
    
    .countdown-item span {
        font-size: 2.5rem;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
    }
    
    /* Footer Responsive */
    .footer-top {
        gap: 30px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        padding: 10px 15px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .btn-newsletter {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-slideshow {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .highlight-card, .group-card {
        padding: 20px;
    }
    
    .group-image {
        height: 200px;
    }
    
    .slideshow-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Footer Responsive */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icon {
        width: 200px;
        justify-content: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo-image {
        margin: 0 auto;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slideshow {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}