:root {
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --secondary: #db2777;
    --secondary-hover: #be185d;
    --background-light: #e1e3e6;
    --background-dark: #101622;
    --surface-light: #ffffff;
    --surface-dark: #1a2233;
    --text-main: #1e1b4b;
    --text-muted: #64748b;
    --custom-color-primary: #7c3aed;
    --custom-color-secondary: #db2777;
    --gray-custom: #c6c6c6;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background-light);
    color: var(--text-main);
}

.shadow-custom {
    box-shadow: 0 0 0.75rem rgb(174 174 174) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.bg-gray-custom {
    background: linear-gradient(135deg, var(--gray-custom), var(--gray-custom)) !important;
}

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-secondary-custom {
    background-color: var(--secondary) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active,
.nav-link.fw-bold {
    color: var(--primary);
    background-color: rgba(124, 58, 237, 0.08);
}

.dropdown-item {
    transition: all 0.2s ease;
    border-radius: 0.4rem;
    margin: 0.2rem 0.5rem;
    width: calc(100% - 1rem);
    color: var(--text-main);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background-color: rgba(124, 58, 237, 0.08);
    color: var(--primary);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
}

.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.4), var(--background-light));
    z-index: -1;
}

.search-widget {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(30, 27, 75, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.nav-tabs .nav-link.active {
    background: transparent;
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.form-control,
.form-select {
    background-color: #f8f9fa;
    border: none;
    padding: 0.75rem 1rem 0.75rem .5rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    background-color: white;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.25rem;
    pointer-events: none;
}

.form-label-custom {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.destination-card {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.destination-card img {
    transition: transform 0.5s ease;
}

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

.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary);
    color: white;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-section {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(124, 58, 237, 0.85);
    mix-blend-mode: multiply;
}

.partner-logo {
    height: 2rem;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.navbar-custom {
    background: linear-gradient(135deg, #ffffff 0%, #89baff 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar-custom.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #89baff 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.footer-dark {
    background-color: #101622;
    color: #94a3b8;
}

.footer-dark h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
    margin-right: 12px;
    width: 20px;
}

/* Reservation Form Styles */
.bg-light-pattern {
    background-color: #f6f6f8;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2331a2b8' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stepper-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: -1;
    transform: translateY(-50%);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.step-active .step-circle {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px #f6f6f8;
}

.step-inactive .step-circle {
    background-color: #e2e8f0;
    color: #64748b;
    box-shadow: 0 0 0 4px #f6f6f8;
}

.route-visual {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid #e2e8f0;
    margin-left: 0.5rem;
}

.route-point {
    position: relative;
    padding-bottom: 1.5rem;
}

.route-dot {
    position: absolute;
    left: -1.6rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.dot-start {
    background-color: var(--primary);
}

.dot-end {
    background-color: #1e293b;
}

.hover-bg-light:hover {
    background-color: #f8f9fa !important;
}

/* Transfer List Responsive Table */
#routeSearch:placeholder-shown~table tbody tr {
    display: table-row;
}

@media (max-width: 768px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 1rem;
        background-color: white;
        border-radius: 0.5rem;
        padding: 1rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
    }

    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.875rem;
        color: #64748b;
        margin-right: 1rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 1050;
    transition: all 0.3s ease;
    background-color: #25D366 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E !important;
}

/* Custom Spacing & Typography */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
    .py-6 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.premium-shadow {
    box-shadow: 0 20px 40px rgba(30, 27, 75, 0.1);
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-stack {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.image-stack__item--bottom {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-stack__item--top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    z-index: 2;
    border: 8px solid white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.5s ease;
}

.about-img-hover:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(124, 58, 237, 0.2) !important;
}

/* Icon Box Small */
.icon-box-sm {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}