/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ebebeb;
    color: #fff;
    min-height: 100vh;
}

.container {
    width: 75%;
    margin: 0 auto;
    position: relative;
    height: 100vh;
}

.cta-container {
    text-align: center;
    padding: 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header image section */
.header-image {
    width: 100%;
    height: 65vh;
    background-image: url('../images/cruise-ship.webp');
    background-size: cover;
    background-position: center 75%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    z-index: 2;
}
 
.flag-left {
    position: absolute;
    
    left: 0;
    width: 45%;
    z-index: 3;
    transform: rotate(-5deg);
    transform-origin: left top;
}

.flag-right {
    position: absolute;
    right:-50%;
    left: auto;
    width: 60%;
    transform: rotate(10deg);
    z-index: 3;
}

/* Main heading styles */
.main-heading {
    position: relative;
    padding: 40px 0;
    background-color: #fff;
}

.main-heading h1 {
    font-size: 4.5rem;
    font-weight: 800;   
    color: #2b8bd4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
    margin-left: 20px;
    font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
    letter-spacing: 2px;
}

.hidden-field {
    display: none !important;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    width: 90%;
    max-width: 500px;
    background-color: #0066cc;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 90vh;
    overflow: hidden; 
}

.popup-content, .poLpup-content {
    padding: 0px;
    color: white;
    height: 80vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.popup-content::-webkit-scrollbar, .poLpup-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.popup-content h2, .poLpup-content h2 {
    color: #ffffff;
    text-align: center;
}

.popup-description {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
    color: #ffffff;
}

.popup-star {
    position: fixed;
    top: 50px;
    right: 500px;
    width: 80px;
    height: 80px;
    background-image: url('../images/startpopup.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10; /* Aumentar el z-index para asegurar que esté por encima del contenido */
    pointer-events: none; /* Permite hacer clic a través de la estrella */
}

/* Form styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #ffeb3b;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #2b8bd4;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.form-group .error-message {
    color: #79ffe2;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.cruise-button {
    background-color: #ffcc00;
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cruise-button:hover {
    background-color: #ffdd33;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cruise-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #888;
    border-color: #777;
}

.select-wrapper {
    position: relative;
}

/* .select-wrapper:after {
    content: '▼';
    font-size: 0.8rem;
    color: #0066cc;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
} */

.sparkle-decoration {
    position: absolute;
    bottom: -225px;
    right: 20%; 
    width: 550px;
    height: 550px;
    background-image: url('../images/estrellas.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
}

/* Country selector */
.iti {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}


.iti__tel-input {
    width: 100%;
    padding-left: 90px !important;
}

.iti__flag-container {
    padding: 0;
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-height: 200px;
    color: #000000;
}

.iti__country {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    
}

.iti__country.iti__active {
    background-color: rgba(0, 0, 0, 0.05);
}
.iti__country:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.iti__flag {
    margin-right: 10px;
}
.iti.error .iti__selected-flag {
    border-color: #ff5252;
}



/* Circular images section */
.circular-images {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 58vh;
    right: 0%;
    z-index: 11;
    transform: translateY(-10%);
}

.circle-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 8px solid #2b8bd4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-left: -60px;
    transition: transform 0.3s ease;
}

.circle-image-1 {
    background-image: url('../images/beach-chairs.webp');
    margin-right: 40px;         
    transform: translateY(-40px);
    z-index: 12;
}

.circle-image-2 {
    background-image: url('../images/resort.jpg');
    transform: translateY(35px);
    z-index: 11;
} 

/* Description text */
.description-text {
    padding: 70px 20px;
    position: relative;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.description-text p { 
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a0a5c;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sparkle-decoration-small {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 60px;
    height: 60px;
    background-image: url('../images/estrellas.webp');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Call to action button */
.cta-container {
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
    position: relative;
}

/* Overlap container for button between sections */
.overlap-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
    margin-top: -30px;
    margin-bottom: -30px;
}

.cta-button {
    background-color: #ffcc00;
    color: #0066cc;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Additional decorative elements */

/* Footer Styles */
.site-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 20px 0 0;
    font-family: 'Poppins', sans-serif; 
    padding-bottom: 0px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
}

/* Left column */
.footer-left {
    flex: 1;
    min-width: 250px;
    padding-right: 20px;
}

.footer-logo-container {
    margin-bottom: 20px;
}

.main-logo {
    width: 180px;
    margin-bottom: 5px;
    
}

.tagline {
    font-size: 14px;
    font-style: italic;
    margin: 0;
    color: #000000;
}

.contact-info p {
    margin: 5px 0;
    font-size: 12px;
}

.social-icons {
    display: flex;
    margin: 20px 0;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ffcc00;
    color: #000000;
}

.flag-container {
    display: flex;
    margin-top: 20px;
}

.footer-flag {
    width: 40px;
    height: auto;
    margin-right: 10px;
    border: 1px solid #fff;
}

.footer-middle {
    flex: 1;
    min-width: 200px;
    padding: 0 20px;
}

.footer-right {
    flex: 1;
    min-width: 250px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.footer-brand {
    margin-top: auto;
    text-align: right;
}

.footer-brand-logo {
    width: 120px;
    margin-bottom: 10px;
    
}

.brand-tagline {
    font-size: 12px;
    color: #ffcc00;
    text-align: right;
}

/* Bottom section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.footer-badges {
    display: flex;
    align-items: center;
}

.badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

.chosen-text {
    color: #ffcc00;
    font-size: 12px;
    margin-left: 15px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-left, .footer-middle, .footer-right {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        text-align: left;
        margin-top: 30px;
    }
    
    .brand-tagline {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-badges {
        margin-bottom: 15px;
    }
    
    .chosen-text {
        margin-left: 0;
        text-align: center;
    }
}

.content-section {
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-image: url('../images/estrellas.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: rotate(-15deg);
}



.Final-section {
    background: linear-gradient(135deg, #9b4bca 0%, #f47d4d 100%);

}

/* Animations */
@keyframes twinkle {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.7; transform: scale(1); }
}



/* Responsive */
@media (max-width: 768px) {

 .container {
    height: 100vh;
    width: 100%;
}
    .header-image {
        height: 40vh;
    }
    
    .main-heading h1 {
        font-size: 3rem;
    }
    
    .description-text p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1.5rem;
        padding: 12px 30px;
    }
    

    .circle-image {
        width: 120px;
        height: 120px;
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .container {
        height: 100vh;
        width: 100%;
    }
    .header-image {
        height: 55vh;
    }
    
    .circular-images {
        right: 5%;
    }
    
    .circle-image {
        width: 250px;
        height: 250px;
    }

    .popup-star {
        top: 10%;
        right: 15%;
    }

}

@media (max-width: 768px) {

    .header-image {
        height: 45vh;
    }
    
    .main-heading h1 {
        font-size: 2.0rem;
    }
    
    .description-text p {
        font-size: 1.1rem;
    }
    
    .circular-images {
        right:2%;
        top: 47vh;
    }
    
    .circle-image-1 {
        /* transform: translateY(-10px); */
        margin-right: 25px;
    }
    
    .circle-image-2 {
        transform: translateY(35px);
        /* margin-left: -20px; */
    }
    
    .circle-image {
        width: 120px;
        height: 120px;
    }
    
    .sparkle-decoration {
        bottom:250px;  
        right:5%;
        width: 200px;
        height: 200px;

    }
    
    .popup-container {
        width: 80%;
    }

    .popup-star {
        top: 80px;
        right: 100px;
    }
}

@media (max-width: 432px) {
    .popup-star {
        top: 80px;
        right: 10px;
    }
}

@media (max-width: 425px) {
    .container {
        height: 100vh;
        width: 100%;
    }
    .header-image {
        height: 35vh;
    }
    
    .main-heading h1 {
        font-size: 2.0rem;
        padding: 10px;
    }
    
    .description-text p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
    
    .circular-images {
        position: absolute;
        top: 30vh; 
        right: 1%; 
        transform: translateX(80%);
        transform: translateY(50%);
        z-index: 20;

    }
    
    .circle-image {
        width: 120px; 
        height: 120px;
        border-width: 3px;
    }
    
    .circle-image-1 {
        transform: translateY(-45px);
        margin-right:-8px;
    }
    
    .circle-image-2 {
        transform: translateY(15px);
        margin-left: -25px;
    }


    
    
    .sparkle-decoration {
        width: 180px; 
        height: 180px;
        bottom: 30vh; 
        right:1%;
        transform: translateX(0);
        z-index: 10;
    }
    
    .flag-left {
        width: 60%;
        top: 5%;
    }
    
    .flag-right {
        width: 70%;
        right: -30%;
    }
    
    .banner-decoration {
        width: 90%;
        height: 60%;
    }
    
    
    .popup-container {
        position: relative;
        width: 80%;
        max-width: none;
        padding: 20px;
        margin: 0 auto;
    } 
    
    .popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .cruise-button {
        padding: 10px 0;
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .popup-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 15px;
    }
    
    .popup-star {
        position: fixed;
        width: 70px;
        height: 70px;
        top: 80px;
        right: 10px;
    }
}


.hidden {   
    display: none !important;
}
.sms-consent {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sms-consent input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    min-width: 18px;
    min-height: 18px;
}

.sms-consent label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: normal;
    display: inline;
}

.verification-container {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.verification-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 2px;
}

.send-code-btn {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.send-code-btn:hover {
    background-color: #ffd700;
}

.send-code-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.verification-message {
    font-size: 0.8rem;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
}

.verification-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.verification-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.verification-message.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
}

/* responsive */
@media (max-width: 375px) {
    .container {
        height: 100vh;
    }
    .header-image {
        height: 30vh;
    }
    
    .main-heading h1 {
        font-size: 2rem;
    }
    
    
    .circular-images {
        top: 25vh; 
        right: 01%; 
    }
    
    .circle-image {
        width:110px; 
        height:110px;
        border-width: 3px;
    }
    
    .circle-image-1 {
        transform: translateY(-50px);
        margin-left:25px;
    }
    
    .circle-image-2 {
        transform: translateY(10px);
        margin-left: -20px;
    }
    
    .sparkle-decoration {
        width: 150px;
        height: 150px;
        bottom: 25vh;
        right: 10%;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 8px 20px;
    }
    
    .sparkle-decoration {
        width: 180px;
        height: 180px;
        bottom: 0;
    }
    
    
    .popup-container {
        width: 80%;
        padding: 15px;
    }
    
    .popup-content h2 {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px;
    }
    
    .popup-star {
        top: 10%;
        width: 60px;
        height: 60px;
    }
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    width: 80%;
    max-width: 500px;
    background: linear-gradient(135deg, #9b4bca 0%, #f47e60 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.popup-content {
    position: relative;
    z-index: 10;
}

.popup-content h2 {
    color: #ffeb3b;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    color: #ffeb3b;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.form-group input:invalid,
.form-group select:invalid {
    border: 1px solid #ff3333;
}

.error-message {
    color: #fbff02;
    font-size: 0.75rem;
    margin-top: 3px;
    display: block;
    font-weight: 400;
    height: 15px;
}

.cruise-button {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    border-radius: 20px;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.cruise-button:hover {
    background-color: #ffd700;
}

.popup-description {
    color: white;
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0 10px;
}
