@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"); /* Using a url */
.email {
    width: 35px;
    height: 20px;
}
.phone {
    width: 35px;
    height: 20px;
}
.facebook {
    width: 20px;
    height: 20px;
}
.instagram {
    width: 20px;
    height: 20px;
}
.whatsapp {
    width: 20px;
    height: 20px;
}
.top-info-bar {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.info-items {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 221, 87, 0.25);
    transform: translateY(-2px);
}

.info-item a {
    color: #fff;
    font-weight: 500;
}

.icon-img {
    width: 14px;
    height: 14px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffdd57;
    transform: translateY(-4px);
}

.social-icons img {
    width: 16px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .info-items {
        justify-content: center;
    }

    .social-icons {
        text-align: center;
        margin-top: 0.5rem;
    }
}

.premium-footer {
    background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.premium-navbar {
    background: linear-gradient(135deg, #ffdd57, #ff9900); /* Yellow → Orange → Black */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Logo */
.brand-logo {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Links */
.nav-link {
    position: relative;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0 6px;
    transition: color 0.3s ease;
}

/* Underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: #2b2b2b;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
    left: 15%;
}

.nav-link:hover {
    color: #000;
}

/* Burger color */
.navbar-burger span {
    background-color: #2b2b2b;
}

/* CTA Button */
.navbar .button {
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 1024px) {
    .navbar-menu {
        background: linear-gradient(135deg, #ffdd57, #ff9900, #000000);
    }

    .nav-link::after {
        display: none;
    }
}

/* Glass overlay */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

/* Keep content above overlay */
.premium-footer .container {
    position: relative;
    z-index: 1;
}

/* Links */
.footer-link {
    color: #d0d0d0;
    display: block;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffdd57;
    transform: translateX(5px);
}

/* Social icons */
.footer-social .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social .icon:hover {
    background: #ffdd57;
    color: #000;
    box-shadow: 0 0 15px #ffdd57;
    transform: translateY(-4px);
}

/* Divider */
.footer-line {
    background-color: rgba(255, 255, 255, 0.15);
    margin: 2.5rem 0 1.5rem;
}

/* Bottom links */
.footer-policy {
    margin-left: 1rem;
    color: #b5b5b5;
    font-size: 0.9rem;
}

.footer-policy:hover {
    color: #ffdd57;
}

/* Input styling */
.premium-footer .input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

.premium-footer .input::placeholder {
    color: #ccc;
}
.hotel-card {
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.card-image img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
}

/* Price Tag */
.hotel-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffdd57;
    color: #000;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Rating */
.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

/* Description */
.hotel-description {
    font-size: 0.9rem;
    color: #555;
}

/* Amenities */
.hotel-amenities {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #777;
}

.hotel-amenities i {
    margin-right: 4px;
    color: #ffdd57;
}

/* CTA Buttons */
.hotel-cta .button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.hotel-cta .button.is-warning:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

.hotel-cta .button.is-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.special-offer-text {
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Orange gradient */
    padding: 4rem 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.special-offer-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.special-offer-text .title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-offer-text .subtitle {
    color: #fff;
    font-weight: 500;
}

.offer-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.offer-tags .tag {
    font-weight: 600;
    background: #ffdd57;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-tags .tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.button.is-warning {
    background: #ffdd57;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.button.is-warning:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

.button.is-light {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

@media screen and (max-width: 768px) {
    .special-offer-text {
        padding: 3rem 1rem;
    }

    .special-offer-text .title {
        font-size: 1.8rem;
    }
}
.contact-section {
    padding: 5rem 1.5rem;
    background: #f5f5f5;
}

.contact-info-card,
.contact-form-card {
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details a {
    color: #ffdd57;
    font-weight: 500;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 1rem;
    font-size: 1.5rem;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #ffc107;
}

.contact-form-card .label {
    font-weight: 600;
    color: #333;
}

.contact-form-card .input,
.contact-form-card .textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form-card .input:focus,
.contact-form-card .textarea:focus {
    border-color: #ffdd57;
    box-shadow: 0 4px 12px rgba(255, 221, 87, 0.3);
}

.button.is-warning {
    background: #ffdd57;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.button.is-warning:hover {
    background: #ffc107;
    transform: translateY(-2px);
}
.hero-slider .item {
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 0px;
}

.hero-slide-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35); /* dark transparent overlay */
    padding: 2rem;
    border-radius: 12px;
}

.hero-slide-overlay h2 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-slide-overlay p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-slide-overlay .button {
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-slide-overlay .button:hover {
    transform: translateY(-3px);
}

/* Slider radio buttons */
.slider-radio-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.radio-slide input[type="radio"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #ffdd57;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-slide input[type="radio"]:checked {
    background: #ffdd57;
    box-shadow: 0 0 10px rgba(255, 221, 87, 0.6);
}
.booking-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Blue gradient */
    padding: 5rem 1.5rem;
}

.booking-card {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px); /* Glassmorphism effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.booking-card .label {
    font-weight: 600;
    color: #fff;
}

.booking-card .input,
.booking-card .select select {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.booking-card .input:focus,
.booking-card .select select:focus {
    border-color: #ffdd57;
    box-shadow: 0 4px 12px rgba(255, 221, 87, 0.3);
}

.booking-btn {
    background: #ffdd57;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.hero-slider {
    position: relative;
}

.slider-radio-buttons {
    position: absolute; /* Position relative to hero-slider */
    bottom: 20px; /* 20px from the bottom of the image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; /* Above the image */
}

.radio-slide input[type="radio"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #ffdd57;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-slide input[type="radio"]:checked {
    background: #ffdd57;
    box-shadow: 0 0 10px rgba(255, 221, 87, 0.6);
}
.floating-cta-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-cta-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Phone Button */
.floating-cta-button.phone {
    background: linear-gradient(135deg, #ff7e5f, #ffb347);
}

.floating-cta-button.phone:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffb347, #ff7e5f);
}

/* WhatsApp Button */
.floating-cta-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-cta-button.whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}
