/* ========== HERO SLIDER ========== */
.hero-slider {
    height: 100vh;
    position: relative;
    margin-top: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.65); */
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .slide-image {
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.slide-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: #1a4b90;
    /* backdrop-filter: blur(12px); removed */
    /* -webkit-backdrop-filter: blur(12px); removed */
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    font-weight: 600;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px #b3b3b3;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-description {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-weight: 400;
}

.btn-explore {
    background: white !important;
    color: var(--primary-color);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px #cccccc;
}

.btn-explore:hover {
    background: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px #b3b3b3;
}

/* ========== SWIPER NAVIGATION ========== */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: radial-gradient(circle at 30% 0%, rgba(255, 182, 182, 0.22), transparent 60%), rgba(0, 0, 0, 0.65);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: radial-gradient(circle, #ff6b6b, #ffb6b6);
    color: #000000;
    box-shadow: 0 0 26px rgba(255, 107, 107, 0.95);
    transform: translateY(-1px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.swiper-button-next:active,
.swiper-button-prev:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

/* ========== PACKAGES SECTION ========== */
.package-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #e9ecef;
}

.package-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-rating {
    color: var(--warning-color);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.package-location {
    color: #64748b;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.package-location i {
    color: var(--accent-color);
}

.package-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
}

.feature i {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 8px;
    /* opacity: 0.9; removed */
}

.feature span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.price-tag {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-tag span {
    font-size: 14px;
    color: #718096;
    font-weight: 400;
}

/* ========== DESTINATION CARDS ========== */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: #0e3d82;
    color: white;
    z-index: 2;
    transition: var(--transition);
}

.destination-card:hover .destination-content {
    padding-bottom: 40px;
}

.destination-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px #b3b3b3;
}

.destination-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

/* ========== SEARCH FORM ========== */
.search-container {
    background: #ffffff;
    /* backdrop-filter: blur(20px); */
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px #e6e6e6;
    margin-top: -100px;
    position: relative;
    z-index: 100;
    border: 1px solid #e9ecef;
}

.search-form .form-control, .search-form .form-select {
    height: 55px;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    padding-left: 20px;
    font-size: 15px;
    background: #f8fafc;
}

.search-form .form-control:focus, .search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 61, 130, 0.1);
    background: white;
}

.btn-search {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 0;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #ffd2d2;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #0e3d82;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    color: white;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-description {
    font-size: 1.4rem;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #ffffff;
}

.btn-cta {
    background: white !important;
    color: var(--primary-color) !important;
    padding: 20px 60px !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border: none !important;
    transition: var(--transition) !important;
    box-shadow: 0 10px 30px #0b3168;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px #b3b3b3;
    background: var(--accent-color) !important;
    color: white !important;
}

/* ========== FOOTER ========== */
.footer-wrapper {
    position: relative;
    overflow: hidden;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at -10% -10%, rgba(252, 225, 236, 0.28), transparent 60%),
        radial-gradient(circle at 110% 110%, rgba(249, 212, 240, 0.24), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
    mix-blend-mode: screen;
}

.footer-marquee {
    background: #0f172a;
    color: white;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid #1b2335;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    padding-left: 50px;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer {
    position: relative;
    padding: 80px 0 36px;
    color: #fdf6f8;
    overflow: hidden;
    background: radial-gradient(circle at top left, #29101f, #050308) fixed;
}

.footer::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 0, rgba(252, 225, 236, 0.24), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(249, 212, 240, 0.18), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.footer-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-about {
    color: rgba(245, 235, 245, 0.88);
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

.footer .contact-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li:hover .contact-icon {
    background: var(--accent-color);
    color: white;
}

.footer .footer-links li.d-flex {
    gap: 0;
    align-items: center;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fdf6f8;
    position: relative;
    padding-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-logo-shell {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.footer-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-inner img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 5px;
}

.footer-brand-title {
    font-size: 1.02rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fdf6f8;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    opacity: 0.85;
    color: rgba(248, 238, 248, 0.92);
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fce1ec, #f9d976);
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-links a {
    position: relative;
    color: rgba(245, 235, 245, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 0.95rem;
    padding-bottom: 2px;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fce1ec, #f9d976);
    transition: width 0.25s ease;
}

.footer-links a:hover {
    color: #fdf6f8;
}

.footer-links a:hover::before {
    width: 100%;
}

/* ========== FOOTER SOCIAL LINKS ========== */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    margin-right: 10px;
    color: #fdf6f8;
    background: radial-gradient(circle at 30% 0, rgba(252, 225, 236, 0.45), rgba(5, 3, 8, 0.9));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-size: 1.05rem;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6);
    background: radial-gradient(circle at 30% 0, #fce1ec, #c76b82);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 219, 234, 0.25);
    font-size: 0.85rem;
    color: rgba(244, 231, 244, 0.75) !important;
}

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
    color: inherit !important;
}

.top-buttons .social-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-buttons .social-icon:hover {
    color: var(--warning-color) !important;
    transform: translateY(-2px);
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    border: none;
    padding-left: 20px;
    background: #e6e6e6;
    color: #fff;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px #e6e6e6;
}
.feature-box .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px #e7ebf2;
}

.footer-newsletter-input {
    height: 46px;
    border-radius: 999px;
    border: none;
    padding: 0 14px;
    font-size: 0.9rem;
    background: rgba(248, 244, 247, 0.1);
    color: #fdf6f8;
    box-shadow: 0 0 0 1px rgba(255, 219, 234, 0.38);
}

.footer-newsletter-input::placeholder {
    color: rgba(244, 231, 244, 0.7);
}

.footer-newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(249, 217, 230, 0.9), 0 0 0 4px rgba(249, 217, 230, 0.18);
    background: rgba(8, 4, 10, 0.8);
}

.footer-newsletter-btn {
    border-radius: 999px;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: linear-gradient(120deg, #6b2b46, #c76b82);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(107, 43, 70, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(107, 43, 70, 0.7);
    background: linear-gradient(120deg, #c76b82, #f1a8bc);
}

.footer-ig-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at 0 0, rgba(252, 225, 236, 0.35), rgba(5, 3, 8, 0.95));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-ig-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.footer-ig-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}
