@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Bebas+Neue&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Shadows+Into+Light+Two&display=swap');
/* Packages Page Specific Styles */

/* Hero Section */
.packages-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    max-width: none;
}

.packages-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-width: none;
}

.packages-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
}

.packages-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.packages-hero .hero-title {
    font-family: "Metropolis", sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Tour Overview Section */
.tour-overview {
    padding: 7rem 0;
    position: relative;
    margin: auto;
}

.tour-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.tour-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-title {
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #004652;
    margin-bottom: 1.5rem;
}

.tour-title-10 {
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #F4F4E9;
    margin-bottom: 1.5rem;
}

.tour-title-14 {
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #F4F4E9;
    margin-bottom: 1.5rem;
}

.tour-description {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
}

.tour-description-10 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.tour-description-14 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.tour-tags {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.tag-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: #004652CC;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    width: 250px;
    text-transform: uppercase;
    text-align: center;
}

.tag-10 {
    background: #F4F4E9;
    color: #004652;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    width: 250px;
    text-transform: uppercase;
    text-align: center;
}

.book-now-container {
    text-align: center;
}

.book-now-btn {
    background: rgba(217, 109, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.book-now-btn * {
    position: relative;
    z-index: 2;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.book-now-btn:hover {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px white, 0 12px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

/* Itinerary Section */
.itinerary-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.itinerary-section .section-title {
    font-family: "Metropolis", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #004652;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin: 0;
}

.itinerary-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #266698;
    border-radius: 2px;
}

/* Tour Accordion */
.tour-accordion {
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.tour-accordion-item {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: hidden;
    margin-bottom: 0;
}

.tour-accordion-section {
    width: 100vw;
    background-image: url('./assets/img/7-days-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

.tour-accordion-section-10 {
    width: 100vw;
    background-image: url('./assets/img/10-days-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

.tour-accordion-section-10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.tour-accordion-section-10 > * {
    position: relative;
    z-index: 2;
    line-height: normal !important;
    font-size: initial !important;
}

.tour-accordion-section-14 {
    width: 100vw;
    background-image: url('./assets/img/14-days-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

.tour-accordion-section > *,
.tour-accordion-section-14 > * {
    line-height: normal !important;
    font-size: initial !important;
}

/* Remove gaps between accordion sections */
.tour-accordion-section + .tour-accordion-section-10,
.tour-accordion-section-10 + .tour-accordion-section-14,
.tour-accordion-section + .tour-accordion-section-14 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure no spacing on sections */
section.tour-accordion-section,
section.tour-accordion-section-10,
section.tour-accordion-section-14 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
}

/* Prevent gaps during hover states */
.tour-accordion-header:hover,
.tour-accordion-header-10:hover,
.tour-accordion-header-14:hover {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

/* Ensure accordion content doesn't shift on hover */
.tour-accordion-content {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: relative !important;
    top: 0 !important;
}

/* Prevent any transform or position changes on hover */
.tour-accordion-section:hover,
.tour-accordion-section-10:hover,
.tour-accordion-section-14:hover {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
    position: relative !important;
    top: 0 !important;
}

.tour-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: none !important;
    background: url(./assets/img/7-days-bg.png) center / cover no-repeat;
}

.tour-accordion-header:hover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
}


.tour-accordion-header-10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: none !important;
    background: url(./assets/img/10-days-bg.png) center / cover no-repeat;
}

.tour-accordion-header-10:hover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
}


.tour-accordion-header-14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: none !important;
    background: url(./assets/img/14-days-bg.png) center / cover no-repeat;
}

.tour-accordion-header-14:hover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
}


.tour-accordion-title {
    font-family: "Metropolis", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    color: #fff;
}

.tour-accordion-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tour-accordion-item.active .tour-accordion-toggle {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.3);
}

.tour-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.tour-accordion-item.active .tour-accordion-content {
    max-height: 10000px;
}

.itinerary-accordion {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Tour Pricing Section within Accordion */
.tour-pricing-section {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
    margin-top: 1rem;
}

.tour-pricing-section .pricing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 500px;
}

.tour-pricing-section .price-block,
.tour-pricing-section .inclusions-block {
    background: #266698;
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
}

.tour-pricing-section .price-block h3,
.tour-pricing-section .inclusions-block h3 {
    font-family: "Metropolis", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.tour-pricing-section .price-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tour-pricing-section .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-pricing-section .price-item:last-child {
    border-bottom: none;
}

.tour-pricing-section .price-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-pricing-section .price-value {
    font-family: "Metropolis", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.tour-pricing-section .inclusions-list,
.tour-pricing-section .exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tour-pricing-section .inclusions-list li,
.tour-pricing-section .exclusions-list li {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.tour-pricing-section .inclusions-list li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tour-pricing-section .exclusions-list li::before {
    content: "✗";
    color: #f44336;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tour-pricing-section .book-now-container {
    text-align: center;
}

.tour-pricing-section .book-now-btn {
    background: rgba(255, 107, 53, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tour-pricing-section .book-now-btn * {
    position: relative;
    z-index: 2;
}

.tour-pricing-section .book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    z-index: 1;
}

.tour-pricing-section .book-now-btn:hover {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px white, 0 12px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.day-item {
    background: #F8F7F2;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 111, 123, 0.1);
    position: relative;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.day-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Arrow between day cards */
.day-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -20px 0;
    z-index: 10;
    position: relative;
    transform: translateY(-25px);
}

.arrow-image {
    width: 500px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.arrow-image:hover {
    transform: scale(1.05);
}

.day-dark {
    background: #004652CC !important;
}

.day-dark .day-title {
    color: #F4F4E9 !important;
}

.day-dark .day-intro {
    color: #F4F4E9 !important;
}

.day-dark .day-detail-text {
    color: #F4F4E9 !important;
}

.day-dark .day-detail-subtext {
    color: #F4F4E9 !important;
}

.day-dark .day-detail-icon {
    color: #F4F4E9 !important;
}

.day-dark .day-activities li {
    color: #F4F4E9 !important;
}

.day-reverse .day-header {
    flex-direction: row-reverse;
}

.day-reverse .day-image {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.day-reverse .day-content {
    padding: 1.5rem 0 1.5rem 1.5rem;
}

/* 7 Days Tour Pricing Section */
.tour-pricing-section-7days {
    background: #f8f9fa;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 1rem auto 2rem auto;
}

.pricing-card, .exclusions-card {
    background: #266698;
    color: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-title, .exclusions-title {
    color: #F4F4E9;
    font-family: "Black Han Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 8px;
    background-image: url('./assets/img/h2-underline.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    filter: brightness(0) invert(1);
}

.exclusions-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 8px;
    background-image: url('./assets/img/h2-underline.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    filter: brightness(0) invert(1);
}

.price-details-7days {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item-7days {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-label-7days, .price-value-7days {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7fafc;
}

.price-note-7days {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: #f7fafc;
    margin-top: 0.5rem;
    text-align: left;
}

.exclusions-list-7days {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exclusions-list-7days li {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #f7fafc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.exclusions-list-7days li::before {
    content: "•";
    color: #f7fafc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.day-header {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 1.5rem;
    flex: 1;
}

.day-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
}

.day-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.day-content {
    flex: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.day-title {
    font-family: "Mogra", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(0, 70, 82, 0.80);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: normal;
    line-height: normal;
    text-align: left;
}

.day-intro {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.day-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 25px;
}

.day-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.day-detail-icon {
    width: 18px;
    height: 18px;
    color: #2C6F7B;
    flex-shrink: 0;
}

.day-detail-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C6F7B;
}

.day-detail-subtext {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    font-style: italic;
    color: #2C6F7B;
    margin-top: 0.2rem;
}

.day-activities {
    margin-top: 1rem;
}

.day-activities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day-activities li {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    color: #333;
    margin-bottom: 0.2rem;
    padding-left: 1.2rem;
    position: relative;
}

.day-activities li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Remove toggle button since we're showing all details */
.day-toggle {
    display: none;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #fff;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.price-block, .inclusions-block {
    background: #266698;
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
}

.price-block h3, .inclusions-block h3 {
    font-family: "Metropolis", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.price-label {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.price-value {
    font-family: "Metropolis", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.inclusions-list, .exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.inclusions-list li, .exclusions-list li {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.inclusions-list li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.exclusions-list li::before {
    content: "✗";
    color: #f44336;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Customize Section */
.customize-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.customize-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.customize-accordion-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 0;
}

.customize-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.customize-accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.customize-overview {
    flex: 1;
}

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

.customize-title {
    font-family: "Metropolis", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #004652;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.customize-description-header {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.customize-tags {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tag-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #266698;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-7-14 {
    background: #266698;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    width: 250px;
    text-transform: uppercase;
    text-align: center;
}

.customize-button-container {
    margin-top: 2rem;
    text-align: center;
}

.customize-now-btn {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 1px;
}

.customize-now-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d44a1f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.customize-now-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.customize-now-btn:hover i {
    transform: translateX(3px);
}

.customize-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #266698;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 2rem;
}

.customize-accordion-item.active .customize-toggle {
    transform: rotate(180deg);
    background: #1e4d6b;
}

.customize-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.customize-accordion-item.active .customize-accordion-content {
    max-height: 10000px;
}

.customize-section .section-title {
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #266698;
    text-align: left;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: normal;
    font-style: normal;
}

.customize-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: left;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.customize-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 0 auto 3rem;
    max-width: 1400px;
    align-items: stretch;
    padding: 2rem;
    justify-items: center;
}

/* Center the 7th card with same width as others */
.customize-card:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 400px;
}

.customize-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    width: 400px;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-header:hover {
    background: #f8f9fa;
}

.card-header h3 {
    font-family: "Metropolis", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #004652;
    margin: 0;
    text-transform: uppercase;
}

.card-header-yellow {
    background: #FFEE06;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.card-header-yellow h3 {
    font-family: "Metropolis", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #266698;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.customize-card.active .card-toggle {
    transform: rotate(180deg);
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.customize-card.active .card-content {
    max-height: 500px;
}

.card-content-dark {
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

/* Individual background images for each customize card */
.customize-card:nth-child(1) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(2) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(3) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(4) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(5) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(6) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-card:nth-child(7) .card-content-dark {
    background-image: url('./assets/img/cus-card-bg/cus-card-bg-7.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.customize-options {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.option-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.option-item input[type="checkbox"]:checked + .checkmark {
    background: #FFD700;
    border-color: #FFD700;
}

.option-item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: #fff;
    flex: 1;
    line-height: 1.4;
}

.see-more-container {
    text-align: center;
}

.see-more-btn {
    background: #FF6B35;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.see-more-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Other Packages Section */
.other-packages {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.packages-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.packages-background .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

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

.packages-title {
    font-family: "Metropolis", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #004652;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-banner {
    background: #ff6b35;
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: "Metropolis", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-content {
    padding: 2rem 1.5rem 1.5rem;
}

.package-content p {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.view-details-btn {
    background: #266698;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details-btn:hover {
    background: #1e4d6b;
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packages-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .tour-title {
        font-size: 1.8rem;
    }
    
    .tour-description {
        font-size: 1rem;
    }
    
    .tag-row {
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Adjust arrow size for mobile */
    .arrow-image {
        width: 300px;
        height: 30px;
    }
    
    .day-arrow {
        margin: -15px 0;
        transform: translateY(-18px);
    }
    
    .itinerary-section .section-title,
    .customize-section .section-title,
    .packages-title {
        font-size: 1.8rem;
    }
    
    .tour-accordion-title {
        font-size: 1.2rem;
    }

    
    .itinerary-accordion {
        padding: 1rem;
        max-width: 95%;
    }
    
    .day-item {
        height: auto;
        min-height: 470px;
    }
    
    .day-header {
        flex-direction: column;
        height: auto;
        min-height: 470px;
    }
    
    .day-reverse .day-header {
        flex-direction: column;
    }
    
    .day-reverse .day-image {
        padding: 1rem;
    }
    
    .day-reverse .day-content {
        padding: 1.5rem;
    }
    
    .day-image {
        width: 100%;
        height: 200px;
        padding: 1rem;
    }
    
    .day-content {
        padding: 1.5rem;
    }
    
    .day-title {
        font-size: 28px;
    }
    
    .day-intro {
        font-size: 0.9rem;
    }
    
    .day-detail-text {
        font-size: 0.85rem;
    }
    
    .day-detail-subtext {
        font-size: 0.75rem;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-pricing-section .pricing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-pricing-section {
        padding: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .tour-pricing-section-7days {
        max-width: 95%;
        padding: 1rem;
    }
    
    .pricing-card, .exclusions-card {
        padding: 1.5rem;
    }
    
    .pricing-title, .exclusions-title {
        font-size: 1.2rem;
    }
    
    .price-label-7days, .price-value-7days {
        font-size: 0.9rem;
    }
    
    .exclusions-list-7days li {
        font-size: 0.9rem;
    }
}

@media (max-width: 424px) {
    .packages-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .packages-hero .hero-title {
        font-size: 2rem;
    }
    
    .tour-title {
        font-size: 1.5rem;
    }
    
    .itinerary-section .section-title,
    .customize-section .section-title,
    .packages-title {
        font-size: 1.5rem;
    }
    
    .customize-accordion-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .customize-toggle {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .customize-title {
        font-size: 1.4rem;
    }
    
    .customize-cards {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .customize-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .customize-card:nth-child(7) {
        width: 100%;
        max-width: 400px;
    }
    
    .customize-button-container {
        margin-top: 1.5rem;
    }
    
    .customize-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tour-accordion-title {
        font-size: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .customize-cards {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    /* Adjust arrow size for small mobile */
    .arrow-image {
        width: 250px;
        height: 25px;
    }
    
    .day-arrow {
        margin: -12px 0;
        transform: translateY(-15px);
    }
    
    .customize-card {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .customize-card:nth-child(7) {
        width: 100%;
        max-width: none;
    }
    
    .card-content-dark {
        padding: 1.5rem;
    }
    
    .card-header-yellow {
        padding: 1rem;
    }
    
    .card-header-yellow h3 {
        font-size: 1rem;
    }
    
    .tour-accordion-header {
        padding: 1rem;
    }
    
    .itinerary-accordion {
        padding: 0.5rem;
        max-width: 98%;
    }
    
    .day-item {
        height: auto;
        min-height: 440px;
    }
    
    .day-header {
        flex-direction: column;
        height: auto;
        min-height: 440px;
    }
    
    .day-reverse .day-header {
        flex-direction: column;
    }
    
    .day-reverse .day-image {
        padding: 0.8rem;
    }
    
    .day-reverse .day-content {
        padding: 1rem;
    }
    
    .day-image {
        width: 100%;
        height: 180px;
        padding: 0.8rem;
    }
    
    .day-content {
        padding: 1rem;
    }
    
    .day-title {
        font-size: 24px;
    }
    
    .tour-pricing-section-7days {
        max-width: 98%;
        padding: 0.8rem;
    }
    
    .pricing-card, .exclusions-card {
        padding: 1.2rem;
    }
    
    .pricing-title, .exclusions-title {
        font-size: 1.1rem;
    }
    
    .price-label-7days, .price-value-7days {
        font-size: 0.85rem;
    }
    
    .exclusions-list-7days li {
        font-size: 0.85rem;
    }
    
    .day-intro {
        font-size: 0.85rem;
    }
    
    .day-detail-text {
        font-size: 0.8rem;
    }
    
    .day-detail-subtext {
        font-size: 0.7rem;
    }
    
}

/* Quote Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #266698, #356e99);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.btn-cancel,
.btn-submit {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e55a2b, #d44a1f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

/* Error Alert Modal Styles */
.error-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.error-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    border: 2px solid #dc3545;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

.error-modal-content h3 {
    color: #dc3545;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-modal-content p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.error-ok-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.error-ok-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.error-ok-btn:active {
    transform: translateY(0);
}

/* Responsive Error Modal */
@media (max-width: 768px) {
    .error-modal-content {
        width: 95%;
        margin: 1rem;
        padding: 30px 20px;
    }
    
    .error-modal-content h3 {
        font-size: 1.2rem;
    }
    
    .error-modal-content p {
        font-size: 0.9rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
}

/* Success Alert Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.success-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    position: relative;
    text-align: center;
}

.success-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.success-icon i {
    font-size: 2.5rem;
}

.success-modal-content h2 {
    color: #004652;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-modal-content > p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    padding: 0 30px;
}

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

.success-details p {
    color: #004652;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-size: 1rem;
}

.success-details ul {
    margin: 0;
    padding-left: 20px;
    color: #333;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

.success-details li {
    margin-bottom: 8px;
    color: #555;
}

.success-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.success-btn:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.success-btn:active {
    transform: translateY(0);
}

/* Responsive Success Modal */
@media (max-width: 768px) {
    .success-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .success-modal-content h2 {
        font-size: 1.2rem;
    }
    
    .success-modal-content > p {
        padding: 0 20px;
        font-size: 0.9rem;
    }
    
    .success-details {
        margin: 0 20px 20px;
        padding: 15px;
    }
    
    .success-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
