/* Tickets Page CSS */
.main-content {
    margin-top: 80px;
}

/* Tickets Header */
.tickets-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/ticket.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.tickets-header h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 2.8rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.event-dates {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.date-badge, .location-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-badge i, .location-badge i {
    color: var(--secondary-color);
}

/* Tickets Intro */
.tickets-intro {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.included-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--secondary-color);
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Ticket Options */
.ticket-options {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.ticket-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.ticket-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dark-theme .ticket-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ticket-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 35px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    z-index: 1;
}

.ticket-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.ticket-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.ticket-features {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--text-color);
    line-height: 1.5;
}

.purchase-info {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.purchase-info h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.purchase-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details {
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item div strong {
    color: var(--text-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3px;
}

.contact-item div p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.ticket-card .btn {
    margin: 30px;
    width: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    padding: 15px;
    font-size: 1.1rem;
}

.member-ticket .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.member-ticket .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Important Notes */
.important-notes {
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.important-notes h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notes h3 i {
    color: var(--secondary-color);
}

.important-notes ul {
    list-style: none;
    padding-left: 0;
}

.important-notes li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.important-notes li:before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 140, 0, 0.05);
}

.faq-question span {
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--bg-color);
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--primary-color);
    color: white;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Payment Steps */
.payment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
}

.step.active .step-text {
    color: var(--secondary-color);
}

.step-line {
    width: 100px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 10px;
}

/* Payment Content */
.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.payment-left {
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.payment-left h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.qr-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    background-color: white;
    padding: 15px;
}

.qr-code {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qr-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.payment-details {
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--secondary-color);
}

.payment-details h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--text-light);
}

.detail-value {
    font-weight: 600;
    color: var(--text-color);
}

/* Payment Right */
.payment-right h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.instruction-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.instruction-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.instruction-content h4 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

.instruction-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.whatsapp-contact i {
    color: #25D366;
    font-size: 1.2rem;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.copy-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.whatsapp-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.payment-note {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.payment-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.payment-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    border-color: #1da851;
}

/* Contact Modal */
.contact-modal .modal-body {
    padding: 30px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-name {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-method i {
    color: var(--secondary-color);
    width: 20px;
}

.contact-method span {
    color: var(--text-color);
}

.contact-instructions h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-instructions ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.contact-instructions li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.member-benefits {
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--secondary-color);
}

.member-benefits h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.member-benefits ul {
    padding-left: 20px;
}

.member-benefits li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Success Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    transform: translateX(150%);
    transition: transform 0.4s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ticket-cards {
        gap: 30px;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
    }
    
    .modal-container {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .tickets-header h1 {
        font-size: 2.2rem;
    }
    
    .ticket-card {
        max-width: 100%;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .step-line {
        width: 60px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 20px;
    }
    
    .qr-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .tickets-header {
        padding: 40px 0 30px;
    }
    
    .tickets-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .event-dates {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ticket-header {
        padding: 25px 20px 15px;
    }
    
    .ticket-features, .purchase-info {
        padding: 20px;
    }
    
    .ticket-card .btn {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .step-line {
        width: 40px;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .notification {
        right: 15px;
        left: 15px;
        text-align: center;
        justify-content: center;
    }
}







/* =========================================== */
/* 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;
    }
}