@keyframes successFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.payment-success {
    animation: successFadeIn 0.5s ease-out;
}

/* Payment Success Overlay */
.payment-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.payment-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-success-container {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-success-overlay.active .payment-success-container {
    transform: translateY(0);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
    content: '';
    position: absolute;
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    z-index: 10;

}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    content: '';
    position: absolute;
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    z-index: 10;
    animation: rotate-circle 4.25s ease-in;
}

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, .5);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: white;
}

@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

.checkmark-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #28a745;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0 0 0 100px #28a745; }
}

.payment-page {
    min-height: 100vh;
    background: #f5f7fa;
    padding: 40px 20px;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-header {
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.payment-main {
    padding: 30px;
}

.payment-method-selector {
    margin-bottom: 30px;
}

.payment-method-selector h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
}

.payment-option {
    margin-bottom: 15px;
    position: relative;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #0066cc;
    background: #e7f1ff;
}

.payment-option i {
    font-size: 24px;
    color: #0066cc;
    margin-right: 15px;
}

.payment-option span {
    font-size: 1.1rem;
    color: #333;
}

.payment-option:hover {
    border-color: #0066cc;
    background: #e7f1ff;
}

.payment-option.active {
    border-color: #0066cc;
    background: #e7f1ff;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option-content i {
    font-size: 28px;
    color: #0052a3;
}

.payment-option-text h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-option-text p {
    color: #333;
    font-size: 1rem;
}

.payment-method-form {
    display: none;
    padding: 30px;
    border: 2px solid #0066cc;
    border-radius: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.payment-method-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.upi-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.upi-icon {
    width: 50px;
    height: 50px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upi-icon i {
    font-size: 24px;
    color: #0066cc;
}

.upi-hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.form-control {
    font-size: 1.1rem;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 8px;
    color: #000;
    background: #fff;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.form-label {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.payment-summary {
    background: #f8f9fa;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 25px;
}

.payment-summary h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.summary-details {
    margin-top: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #000;
    font-size: 1.1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 2px solid #eee;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    color: #0052a3;
}

.payment-submit-btn {
    width: 100%;
    padding: 15px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-submit-btn:hover {
    background: #0052a3;
}

.payment-success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-animation {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    background: #28a745;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 40px;
    height: 70px;
    border-bottom: 10px solid white;
    border-right: 10px solid white;
    opacity: 0;
    animation: checkmark 0.3s ease-out 0.3s forwards;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmark {
    from { opacity: 0; height: 0; width: 0; }
    to { opacity: 1; height: 70px; width: 40px; }
}

/* Spinner for button */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 1rem 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.status-pending {
    background-color: #f8d347;
    color: #856404;
}

.status-confirmed {
    background-color: #28a745;
    color: white;
}

.status-completed {
    background-color: #6610f2;
    color: white;
}

.status-cancelled {
    background-color: #dc3545;
    color: white;
}

/* Payment Status in Booking Details */
.payment-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.payment-status-badge.success {
    background-color: #28a745;
    color: white;
}

.payment-status-badge i {
    font-size: 1.2rem;
}

.payment-status-badge.success i {
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.payment-status.status-confirmed {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.payment-status.status-pending {
    background-color: rgba(248, 211, 71, 0.2);
    color: #856404;
}

.payment-button {
    transition: all 0.3s ease;
}

.payment-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff9900;
    --accent-color: #ff6347;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* Header */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggle:hover {
    transform: scale(1.1);
}

.navbar-toggle .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.navbar-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--white);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #004494;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    z-index: -1;
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/1600x900/?travel,beach,mountain,exotic');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.6) 0%, rgba(255, 153, 0, 0.6) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Packages */
.featured-packages {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

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

.packages-grid .card,
.row .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-grid .card:hover,
.row .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.card-body .btn-primary {
    margin-top: auto;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-location {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.card-location i {
    margin-right: 0.5rem;
}

.card-duration {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.card-duration i {
    margin-right: 0.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.custom-input {
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Packages Page */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Package Detail Page */
.package-detail {
    padding: 4rem0;
}

.package-header {
    margin-bottom: 2rem;
}

.package-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.package-meta-item {
    margin-right: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.package-meta-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.package-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.package-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.package-description {
    margin-bottom: 2rem;
}

.package-itinerary {
    margin-bottom: 2rem;
}

.package-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-includes,
.package-excludes {
    margin-bottom: 2rem;
}

.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li,
.excludes-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.includes-list li:before {
    content: "✓";
    color: var(--success-color);
    margin-right: 0.5rem;
}

.excludes-list li:before {
    content: "✗";
    color: var(--danger-color);
    margin-right: 0.5rem;
}

/* Booking Page */
.booking-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Payment Page */
.payment-options {
    margin-bottom: 2rem;
}

.payment-option {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option.active {
    border-color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.05);
}

.payment-details {
    margin-top: 2rem;
}

/* Profile Page */
.profile-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.profile-info-item {
    margin-bottom: 1rem;
}

.profile-info-label {
    font-weight: 700;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.profile-info-value {
    font-size: 1.1rem;
}

/* Booking History */
.booking-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.booking-id {
    font-weight: 700;
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-pending {
    background-color: var(--warning-color);
    color: #856404;
}

.status-confirmed {
    background-color: var(--success-color);
    color: var(--white);
}

.status-cancelled {
    background-color: var(--danger-color);
    color: var(--white);
}

.status-completed {
    background-color: var(--info-color);
    color: var(--white);
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.booking-detail-item {
    margin-bottom: 1rem;
}

.booking-detail-label {
    font-weight: 700;    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.booking-detail-value {
    font-size: 1.1rem;
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    display: none;
}

.chatbot-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-close {
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chatbot-message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message-user {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 1rem 1rem 0 1rem;
    align-self: flex-end;
    margin-left: auto;
}

.message-bot {
    background-color: var(--light-gray);
    color: var(--dark-color);
    padding: 0.75rem;
    border-radius: 1rem 1rem 1rem 0;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    margin-right: 0.5rem;
}

.chatbot-input button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.5rem;
}

.social-link:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .package-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .navbar-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        margin-top: 2rem;
    }

    .nav-item {
        margin: 0.75rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .profile-info {
        grid-template-columns: 1fr;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .chatbot-window {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .package-header {
        margin-bottom: 1.5rem;
    }

    .package-title {
        font-size: 2rem;
    }

    .package-image {
        height: 250px;
    }

    .chatbot-window {
        width: 280px;
        right: -10px;
    }
}
.card-img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Search Container Styles */
.search-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.related-packages {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.related-packages h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #333;
}

.related-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.package-info .location {
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.package-info .location i {
    margin-right: 0.5rem;
    color: #0066cc;
}

.package-info .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 1.25rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid #e1e1e1;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label i {
    color: #0066cc;
}

.custom-select {
    padding: 0.75rem;
    border-radius: 6px;
    border: 2px solid #e1e1e1;
    transition: all 0.3s ease;
}

.custom-select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.search-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.search-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0066cc;
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.reset-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #666;
    color: #666;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background-color: #666;
    color: white;
    transform: translateY(-2px);
}
/* Payment Success Animation */
.success-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.success-animation {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    position: relative;
    background: #4CAF50;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: scaleIn 0.3s ease-out;
}

.checkmark {
    width: 60px;
    height: 30px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: checkmark 0.4s ease-in-out 0.4s forwards;
    opacity: 0;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmark {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-details {
    margin: 30px 0;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.success-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Admin Image Upload Styles */
.image-upload-container {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.image-upload-container:hover {
    border-color: #0066cc;
}

.image-preview {
    max-width: 300px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-preview img {
    width: 100%;
    height: auto;
}

/* Admin Dashboard Styles */
.admin-widget {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.admin-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Three Dots (Ellipsis) Menu Styles */
.ellipsis-menu {
    position: relative;
    display: inline-block;
}

.ellipsis-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ellipsis-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.ellipsis-menu-content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.ellipsis-menu.active .ellipsis-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ellipsis-menu-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.ellipsis-menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.ellipsis-menu-item.delete {
    color: var(--danger-color);
}

.ellipsis-menu-item.delete:hover {
    background-color: rgba(220, 53, 69, 0.1);
}
/* Success Animation Container */
.success-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.success-animation {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Checkmark Animation */
.checkmark-circle {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 1rem;
    animation: scale-up 0.5s ease-in-out;
}

.checkmark {
    width: 50px;
    height: 100px;
    border-right: 8px solid #28a745;
    border-top: 8px solid #28a745;
    margin: 0 auto;
    transform-origin: right top;
    transform: scaleX(-1) rotate(135deg);
    animation: checkmark 0.8s ease-in-out forwards;
    opacity: 0;
}

/* Animations */
@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }
    20% {
        height: 0;
        width: 50px;
        opacity: 1;
    }
    40% {
        height: 100px;
        width: 50px;
    }
    100% {
        height: 100px;
        width: 50px;
        opacity: 1;
    }
}

@keyframes scale-up {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out;
}

.animate-scale {
    animation: scale 0.5s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Booking Details Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.detail-label {
    font-weight: bold;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-value {
    color: #333;
    font-size: 1.1rem;
}

.success-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkmark-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    animation: scaleIn 0.5s ease-out;
}

.checkmark-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulseCircle 2s infinite;
}

.checkmark {
    width: 30px;
    height: 60px;
    border-right: 6px solid white;
    border-bottom: 6px solid white;
    transform: rotate(45deg);
    margin-top: -10px;
    animation: checkmarkDraw 0.5s ease-out 0.5s forwards;
    opacity: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: #E8F5E9;
    color: #2E7D32;
    font-weight: 600;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: slideInUp 0.5s ease-out;
}

.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    margin-right: 10px;
    position: relative;
    animation: pulse 2s infinite;
}

.payment-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: #FFF3E0;
    color: #F57C00;
    transition: all 0.3s ease;
}

.payment-status-badge.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.payment-status-badge i {
    font-size: 1.2rem;
}

.payment-status-badge i {
    font-size: 1.1rem;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes pulseCircle {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 30px; height: 60px; opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes slideInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.detail-item {
    background: #F8F9FA;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
}

.detail-label {
    color: #6C757D;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.detail-value {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
}

.success-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 0.5s ease-out 1s forwards;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-secondary {
    background: #E8F5E9;
    color: #2E7D32;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Action Buttons */
.success-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.success-actions a {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-secondary {
    background: #f8f9fa;
    color: #343a40;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.success-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-status-badge {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-status-badge i {
    color: white;
    font-size: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}