footer {
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: white;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 3px solid #667eea;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.footer-section h3:hover {
    color: #ff8c00;
}

.footer-section p, .footer-section a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c00;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section .social-icons {
    display: flex;
    gap: 15px;
}

.footer-section .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #ff8c00;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom a {
    color: #ff8c00;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: 1;
    animation: pulse 6s infinite alternate ease-in-out;
}

footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
    animation: pulse 8s infinite alternate ease-in-out;
}

.header-rightt{
    width: 60px;
    height: 60px;
    right: 40px;
    bottom: 50px;
    border-radius: 50%;
    z-index: 1000;
    position: absolute;
    /* background-color: yellow; */
    padding: 10px;
}

.whatsapp-button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1eeb0cd3;
    color: white;
    font-size: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #218808;
    transform: scale(1.1);
}

.aventurasinfo {
    text-align: justify;
}

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

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.modal-content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 80%;
    z-index: 1001;
    text-align: left;
    height: auto;
    color: #333;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active,
.modal-content.active {
    display: block;
    opacity: 1;
    height: 80vh;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-content p,
.modal-content li {
    font-size: 1.1rem;
    color: #555;
}

.modal-content h3 {
    font-size: 1.4rem;
    color: #ff8c00;
    margin-top: 20px;
}

.modal-content ul {
    list-style: disc;
    margin-left: 20px;
}

.modal-content ul li {
    margin-bottom: 10px;
}

.modal-content a {
    color: #ff8c00;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 480px) {
    .header-right {
        bottom: 135px;
        
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .header-rightt{
        right: 10px;
        bottom: 160px;
    }
}
