/* Flight Ticket Specific Styles */

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');




* {
    margin: 0;
    padding: 0;
}

:root {
    --violet: #3b254e;
    --violet-dark: #2a1839;
    --blue: #0057ff;
    --red: #cc2e2e;
    --black: #111111;
    --white: #ffffff;
    --gray: #f5f5f7;
    --success: #28a745;
    --warning: #ffc107;
    --sky-blue: #00b4d8;
    --orange: #ff6b35;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ====== HEADER SECTION ====== */
header {
    width: 90%;
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    margin: 0 auto;
    padding: 0 30px;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1003;
}

.logo img {
    width: 180px;
    height: 140px;
    border-radius: 0%;
    background: transparent;
}

header ul {
    display: flex;
    gap: 25px;
}

header ul li {
    list-style: none;
    text-transform: capitalize;
}

header ul a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header ul i {
    margin-right: 5px;
}

header ul a i {
    margin-left: 5px;
}

header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: rgb(126, 24, 24);
    transition: width 0.6s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* ====== DROPDOWN MENU ====== */
header ul li ul {
    position: absolute;
    top: 100px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
}

header ul li ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    width: 100%;
}

header ul li ul li a {
    padding: 12px 20px;
    color: #000;
}

header ul li ul li:hover {
    background: rgb(100, 98, 98);
    color: #fff;
    padding: 10px;
}

header ul li ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: width 0.6s ease;
}

header ul li.show ul,
header ul li:hover ul {
    display: flex;
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== HEADER RESPONSIVE ====== */
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 991px) {
    header {
        padding: 10px 20px;
        width: 95%;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 120px;
        height: 100px;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        flex-direction: column;
        padding: 15px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }

    .menu li {
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header {
        padding: 8px 15px;
        width: 98%;
        top: 10px;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 100px;
        height: 80px;
    }

    .hamburger {
        gap: 3px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .menu {
        padding: 10px;
    }
    

    
    .hero-flight h1 {
        font-size: 1.75rem !important;
    }
}

/* Hero Section */
.hero-flight {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 100vh;
    overflow: hidden;
}



.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(0, 87, 255, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-flight h1 {
    font-family: 'Laviossa', serif;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

/* Buttons */
.btn-blue {
    background: linear-gradient(135deg, var(--blue), #3b82f6);
    color: var(--white);
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.btn-blue:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 87, 255, 0.4);
    color: var(--white);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), #ff8c42);
    color: var(--white);
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-orange:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 87, 255, 0.3), rgba(204, 46, 46, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 87, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 87, 255, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 87, 255, 0.5);
}

/* Services Section Redesign */
.services-section {
    min-height: auto;
    position: relative;
    overflow: visible;
}

.services-split {
    display: flex;
    min-height: auto;
    position: relative;
}

.services-left {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 40px 50px 60px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 3;
}

.services-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-left: -25%;
    z-index: 2;
}

.services-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blue), var(--orange), var(--sky-blue));
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.services-right #servicesCarousel {
    position: relative;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
    margin: 5px;
}

.services-right .carousel-inner {
    clip-path: polygon(30.5% 0, 100% 0, 100% 100%, 0.5% 100%);
}

.carousel-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--orange);
}

.carousel-overlay h3 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 5px;
}

.carousel-overlay p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.services-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
}

.services-icon-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--sky-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.services-icon-badge i {
    font-size: 1.5rem;
    color: white;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 3px solid var(--blue);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--orange);
}

.service-item i {
    font-size: 1.3rem;
    color: var(--blue);
    min-width: 25px;
    transition: transform 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-item h6 {
    font-size: 0.9rem;
    color: #333;
}

.service-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Footer */
.footer {
    background: #fff;
    color: #000;
    padding: 70px 5% 35px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 240px;
}

.footer h3, .footer h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
}

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

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

.footer-links ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #ff6f61;
}

.footer-contact a {
    text-decoration: none;
    color: var(--red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
}

.footer-contact .mail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-contact .whatsapp, .footer-contact .mailing, .footer-contact .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a img {
    width: 30px;
    height: 30px;
}

.footer .logo img {
    width: 160px;
    height: 130px;
}

.newsletter {
    background: #111;
    padding: 35px 20px;
    text-align: center;
    border-radius: 6px;
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    width: 260px;
    max-width: 100%;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    background: #ff6f61;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff3c2f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

/* Packages Section Background */
.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.75));
    z-index: 1;
}

.packages-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Destinations Section Background */
.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.75));
    z-index: 1;
}

.destinations-section .container {
    position: relative;
    z-index: 2;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 87, 255, 0.25);
    border-color: rgba(0, 87, 255, 0.3);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.05), rgba(102, 126, 234, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.package-card:hover::before {
    opacity: 1;
}

.package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s;
}

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

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.package-card .carousel-control-prev,
.package-card .carousel-control-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.package-card:hover .carousel-control-prev,
.package-card:hover .carousel-control-next {
    opacity: 1;
}

.package-card .carousel-control-prev {
    left: 10px;
}

.package-card .carousel-control-next {
    right: 10px;
}

.package-card .carousel-control-prev-icon,
.package-card .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

.package-content {
    padding: 20px;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--blue);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.package-features li {
    padding: 2px 0;
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
}

.package-features i {
    font-size: 0.7rem;
}

.package-content h4 {
    font-size: 1.15rem;
}

.package-content p {
    font-size: 0.85rem;
}

.package-content h3 {
    font-size: 1.35rem;
}

.package-content small {
    font-size: 0.7rem;
}

.package-content .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    
  html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
    
    
  header{
  width: 95%;
  max-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
 background-color: rgba(255, 255, 255, 0.5);
  border-radius: 40px 40px 0 0;
  margin: 0 auto;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  z-index: 1000;
}

    
    
    
    .hero-flight {
        min-height: 60vh;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #heroCarousel .carousel-control-prev {
        left: 15px;
    }
    
    #heroCarousel .carousel-control-next {
        right: 15px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 10px;
        margin-top: 50px;
    }
    
    .services-section {
        overflow: hidden;
    }
    
    .services-split {
        flex-direction: column;
    }
    
    .services-left {
        flex: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding: 40px 20px;
        margin-bottom: -5px;
    }
    
    .services-card {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .services-right {
        height: 50%;
        margin-left: 0;
        clip-path: none;
    }
    
    .services-right::before {
        clip-path: none;
    }
    
    .services-right #servicesCarousel {
        clip-path: none;
        margin: 0;
    }
    
    .services-right .carousel-inner {
        clip-path: none;
    }
    
    .carousel-overlay {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .carousel-overlay h3 {
        font-size: 1.1rem;
    }
    
    .carousel-overlay p {
        font-size: 0.85rem;
    }
    
    .hero-flight h1 {
        font-size: 2rem !important;
    }
    
    .hero-flight .lead {
        font-size: 1rem;
    }

    .destination-card {
        height: 250px;
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}


/* Horizontal Package Cards */
.package-card-horizontal {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.package-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 87, 255, 0.3);
}

.package-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-img .badge {
    z-index: 10;
}

.package-badge-link {
    transition: all 0.3s ease;
}

.package-badge-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.package-info {
    padding: 15px;
}

.package-info h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.package-info .small {
    font-size: 0.85rem;
    color: #666;
}

.package-info .package-features {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.package-info .package-features li {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-info .package-features i {
    font-size: 0.7rem;
}

#africaCarousel .carousel-control-prev,
#africaCarousel .carousel-control-next,
#asiaCarousel .carousel-control-prev,
#asiaCarousel .carousel-control-next,
#europeCarousel .carousel-control-prev,
#europeCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 87, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#africaCarousel .carousel-control-prev,
#asiaCarousel .carousel-control-prev,
#europeCarousel .carousel-control-prev {
    left: 5px;
}

#africaCarousel .carousel-control-next,
#asiaCarousel .carousel-control-next,
#europeCarousel .carousel-control-next {
    right: 5px;
}
