/* ========== 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: white;
    background: #1a4b90;
    /* backdrop-filter: blur(10px); */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid #ffffff;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 0 20px #e6e6e6;
    transform: scale(1.1);
    border-color: white;
}

/* ========== 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-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 {
    background: #0f172a;
    color: white;
    padding: 90px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('../images/pattern.png') repeat; removed */
    /* opacity: 0.05; removed */
    pointer-events: none;
}

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

.footer-about {
    color: #e2e8f0;
    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.4rem;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-widget:hover .footer-title:after {
    width: 75px;
}

.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 {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:not([href^="tel"]):not([href^="mailto"])::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* ========== FOOTER SOCIAL LINKS ========== */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: #ffc107;
    color: #103a78;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px #ffeeb5;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1a4b90;
    color: #ffc107 !important;
    font-size: 0.9rem;
}

.footer-bottom p, 
.footer-bottom span,
.footer-bottom a {
    color: #ffc107 !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;
}
