/* Root variables (from your provided palette) */

@font-face {
    font-family: "myFirstFont";
    src: url("../fonts/Cairo-VariableFont_slnt,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --body-font-family: "myFirstFont", sans-serif;
    --heading-font-family: "myFirstFont", sans-serif;
    --body-color: #7b7b7b;
    --main-color: #f15e25;
    --optional-color: #263478;
    --heading-color: #0f1514;
    --white-color: #fff;
    --black-color: #000;
    --light-bk-color: #dde8e7;
    --font-size: 15px;
    --transition: all ease .5s;
    --border-radius: 4px;
    --box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
}

/* -------------- Basic reset -------------- */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%
}

body {
    font-family: var(--body-font-family);
    font-size: var(--font-size);
    color: var(--body-color);
    background: linear-gradient(180deg, var(--light-bk-color), #fff 40%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 40px;
}

/* Default RTL for Arabic and Urdu */
html[dir="rtl"] body,
body[dir="rtl"] {
    direction: rtl;
}

/* LTR for English */
html[dir="ltr"] body,
body[dir="ltr"] {
    direction: ltr;
}


/* -------------- header -------------- */

.site-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    margin: 10px 18px;
    padding: 10px 18px;
    box-shadow: var(--box-shadow);
    z-index: 999;
    top: 0;
    position: fixed !important;
    width: -moz-available;
    right: 0;
    left: 0;
}

.brand .logo-placeholder {
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
}

/* -------------- Mobile Menu Toggle (Hamburger) -------------- */

.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* -------------- Navigation Menu -------------- */

.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav .nav-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--main-color);
    background-color: rgba(241, 94, 37, 0.08);
}

.main-nav .nav-link:hover::after {
    width: 80%;
}

.main-nav .nav-link-cta {
    background-color: var(--main-color);
    color: var(--white-color) !important;
    font-weight: 600;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(241, 94, 37, 0.25);
}

.main-nav .nav-link-cta::after {
    display: none;
}

.main-nav .nav-link-cta:hover {
    background-color: var(--optional-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 94, 37, 0.35);
}

.main-nav .nav-link.active {
    color: var(--main-color);
    font-weight: 600;
}

.main-nav .nav-link.active::after {
    width: 80%;
}

/* -------------- Language Switcher -------------- */

.lang-switch {
    display: flex;
    gap: 4px;
    background-color: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--body-color);
    font-weight: 500;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--body-font-family);
}

.lang-btn:hover {
    color: var(--main-color);
    background-color: rgba(241, 94, 37, 0.1);
}

.lang-btn[aria-pressed="true"] {
    background-color: var(--white-color);
    color: var(--main-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

/* -------------- Hero Carousel Slider -------------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 9%;
    box-shadow: var(--box-shadow);
    margin-bottom: 1%;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slider img {
    height: 300px;
}

.hero-slider img {
    width: 100%;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    padding: 30px 45px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    bottom: 20%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider .carousel-caption h2 {
    color: var(--white-color);
    font-family: var(--heading-font-family);
    font-weight: 700;
}

.hero-slider .carousel-caption p {
    color: #f1f1f1;
    margin-bottom: 0;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    filter: none !important;
    background-color: transparent;
    width: 2.5rem;
    height: 2.5rem;
    background-image: none;
    position: relative;
}

.hero-slider .carousel-control-prev-icon::after,
.hero-slider .carousel-control-next-icon::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border-top: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.hero-slider .carousel-control-prev-icon::after {
    transform: rotate(225deg);
}

.hero-slider .carousel-indicators [data-bs-target] {
    background-color: var(--main-color) !important;
    opacity: 0.4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: var(--transition);
}

.hero-slider .carousel-indicators .active {
    opacity: 1;
    background-color: var(--main-color) !important;
    transform: scale(1.2);
}


/* -------------- hero -------------- */

.hero {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(241, 94, 37, 0.1);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--optional-color));
}

.lead {
    color: var(--body-color);
    line-height: 1.7;
}

.display-6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* -------------- buttons -------------- */

.btn-main {
    background: var(--main-color);
    color: var(--white-color);
    border-radius: 8px;
    border: 0;
    padding: 12px 24px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(241, 94, 37, 0.25);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-main:hover::before {
    width: 300px;
    height: 300px;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 94, 37, 0.35);
}

.btn-outline-secondary {
    border: 2px solid #e0e0e0;
    color: var(--heading-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: rgba(241, 94, 37, 0.05);
    transform: translateY(-1px);
}

/* -------------- package cards -------------- */

.package-card {
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--optional-color));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

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

.package-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

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

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(241, 94, 37, 0.2);
}

.package-card .card-body {
    padding: 1.25rem;
}

.package-card .card-title {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.package-card.selected {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(241, 94, 37, 0.1);
}

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

/* -------------- price -------------- */
.price {
    font-weight: 800;
    color: var(--optional-color);
    font-size: 20px;
    line-height: 1.2;
}

.price .start-price {
    font-size: 24px;
    font-weight: 900;
}

/* -------------- Checkbox Enhancements -------------- */

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(241, 94, 37, 0.1);
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
    color: var(--heading-color);
}

/* -------------- panels -------------- */

.panel {
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.panel:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.panel h4, .panel h5, .panel h6 {
    color: var(--heading-color);
    font-weight: 700;
}

.panel h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.panel h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* -------------- traveler rows -------------- */

.traveler {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff, #fafafa);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.traveler:hover {
    border-color: rgba(241, 94, 37, 0.3);
    box-shadow: 0 2px 8px rgba(241, 94, 37, 0.1);
    transform: translateX(-2px);
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumb:hover {
    border-color: var(--main-color);
    background: linear-gradient(135deg, rgba(241, 94, 37, 0.05), rgba(241, 94, 37, 0.1));
}

/* -------------- sticky side -------------- */

.sticky-side {
    position: sticky;
    top: 120px;
    transition: all 0.3s ease;
}

.sticky-side .card {
    border: 1px solid rgba(241, 94, 37, 0.15);
    box-shadow: 0 4px 20px rgba(241, 94, 37, 0.1);
}

.sticky-side h6 {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(241, 94, 37, 0.2);
    margin-bottom: 1rem;
}


/* -------------- Footer -------------- */

.footer-link {
    color: var(--body-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 4px 0;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--main-color);
    padding-right: 8px;
}

.footer-link:hover::after {
    width: 100%;
}

.footer {
    font-size: var(--font-size);
    background: linear-gradient(180deg, var(--light-bk-color), rgba(221, 232, 231, 0.5));
    margin-top: 4rem !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    border-top: 3px solid rgba(241, 94, 37, 0.1);
}

.footer h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--main-color);
    border-radius: 2px;
}


/* -------------- small screens tweak -------------- */

@media (max-width: 991px) {
    .main-nav {
        gap: 12px;
    }

    .main-nav .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .main-nav .nav-link-cta {
        padding: 8px 16px;
    }
}

@media (max-width: 767px) {
    .site-header {
        margin: 10px 12px;
        padding: 12px 16px;
    }

    .site-header .container {
        flex-wrap: nowrap;
        position: relative;
    }

    .brand {
        flex: 0 0 auto;
        z-index: 1001;
    }

    .brand .logo-placeholder {
        height: 45px;
        object-fit: cover;
        background: #fff;
    }

    .mobile-menu-toggle {
        order: 2;
        margin-right: auto;
        margin-left: 0;
    }

    .main-nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
    }

    .main-nav-wrapper.active {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        flex: 1;
        margin-bottom: 20px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav .nav-link {
        display: block;
        text-align: right;
        padding: 14px 16px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 16px;
    }

    .main-nav .nav-link-cta {
        width: 100%;
        margin-top: 12px;
        text-align: center;
    }

    .lang-switch {
        margin-top: auto;
        margin-left: 0 !important;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
        padding: 8px;
        flex-shrink: 0;
    }

    .lang-btn {
        flex: 1;
        font-size: 14px;
        padding: 10px 12px;
    }

    .gap-3 {
        gap: 1rem !important;
        flex-wrap: wrap;
        display: flex;
    }

    .btn-main {
        padding: 10px 10px !important;
    }

    .hero {
        margin-top: 1% !important;
    }

    body {
        padding-bottom: 40px !important;
    }

    .footer {
        padding-bottom: 40px !important;
    }

    .hero-slider {
        height: 300px;
        margin-top: 40% !important;
    }

    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider img {
        height: 300px;
    }

    .hero-slider .carousel-caption {
        bottom: 12%;
        padding: 15px 20px;
    }

    .hero-slider .carousel-caption h2 {
        font-size: 1rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* Overlay when menu is open */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    pointer-events: none;
}

@media (max-width: 767px) {
    body.menu-open {
        overflow: hidden;
    }
}

/* -------------- responsive invoice for small screens -------------- */

@media (max-width: 920px) {
    .modal-card {
        width: 95%
    }
}


/* -------------- modal invoice -------------- */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-card {
    width: 920px;
    max-width: calc(100% - 32px);
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 30px 90px rgba(10, 10, 10, .18);
}

/* -------------- invoice layout -------------- */

.invoice-content {
    border: 1px dashed #eee;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fafafa)
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.invoice-title {
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 800
}

.invoice-meta {
    color: var(--body-color);
    font-size: 13px
}

.muted {
    color: var(--body-color);
}

/* -------------- Form Enhancements -------------- */

.form-control, .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(241, 94, 37, 0.1);
    outline: none;
}

/* -------------- Flatpickr Styling -------------- */

.flatpickr-input {
    cursor: pointer;
    background-color: #fff;
}

.flatpickr-input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(241, 94, 37, 0.1);
}

.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(241, 94, 37, 0.2);
    font-family: var(--body-font-family);
    direction: rtl;
}

.flatpickr-months {
    background: linear-gradient(135deg, var(--main-color), var(--optional-color));
    border-radius: 12px 12px 0 0;
    padding: 12px;
}

.flatpickr-month {
    color: var(--white-color);
}

.flatpickr-current-month {
    color: var(--white-color);
    font-weight: 600;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--white-color);
    fill: var(--white-color);
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.flatpickr-weekdays {
    background-color: rgba(241, 94, 37, 0.05);
    padding: 8px 0;
}

.flatpickr-weekday {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 13px;
}

.flatpickr-day {
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.flatpickr-day:hover {
    background-color: rgba(241, 94, 37, 0.1);
    border-color: rgba(241, 94, 37, 0.3);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(241, 94, 37, 0.3);
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background-color: var(--optional-color);
    border-color: var(--optional-color);
}

.flatpickr-day.today {
    border-color: var(--main-color);
    font-weight: 600;
}

.flatpickr-day.today:hover {
    background-color: rgba(241, 94, 37, 0.15);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc;
    opacity: 0.5;
}

.flatpickr-day.inRange {
    background-color: rgba(241, 94, 37, 0.1);
    border-color: rgba(241, 94, 37, 0.2);
    box-shadow: none;
}

/* -------------- Trip Type Badge -------------- */

.trip-type-badge {
    background: linear-gradient(135deg, var(--main-color), var(--optional-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* -------------- Urgency Badge -------------- */

.urgency-badge {
    animation: pulse 2s infinite;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* -------------- Package Card Enhancements -------------- */

.package-card .badge {
    font-size: 11px;
    padding: 4px 8px;
    font-weight: 500;
}

.package-card .btns {
    flex-wrap: wrap;
    gap: 4px;
}

@media (max-width: 576px) {
    .package-card .btns {
        flex-direction: column;
        width: 100%;
    }
    
    .package-card .btns .btn {
        width: 100%;
    }
}

/* -------------- Booking Modal Progress Steps -------------- */

.booking-progress {
    padding: 20px 0;
}

.booking-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.booking-progress .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.booking-progress .step.active .step-number {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 12px rgba(241, 94, 37, 0.3);
}

.booking-progress .step.completed .step-number {
    background: var(--optional-color);
    color: white;
}

.booking-progress .step-label {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.booking-progress .step.active .step-label {
    color: var(--heading-color);
    font-weight: 600;
}

.booking-progress .step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
    margin-top: -20px;
    transition: background 0.3s ease;
}

.booking-progress .step.completed + .step-line,
.booking-progress .step.active + .step-line {
    background: var(--main-color);
}

.booking-step {
    min-height: 300px;
}

/* -------------- Children Ages Input -------------- */

.child-age-input {
    margin-bottom: 12px;
}

.child-age-input label {
    font-size: 13px;
    color: var(--body-color);
    margin-bottom: 4px;
}

/* -------------- Itinerary Styling -------------- */

.itinerary-day-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--optional-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(241, 94, 37, 0.3);
}

.itinerary-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.itinerary-item h5 {
    color: var(--heading-color);
    font-weight: 600;
}

/* -------------- Package Details Page Layout -------------- */

.package-details .col-lg-6 {
    min-height: 400px;
}

@media (max-width: 991px) {
    .package-details .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    .package-details .sticky-side {
        position: relative;
        top: 0;
    }
}

.form-label {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.form-label.small {
    font-size: 13px;
    color: var(--body-color);
}

/* -------------- Override Bootstrap Primary Color -------------- */
.text-primary {
    color: var(--main-color) !important;
}

/* -------------- Team Icons -------------- */
.team-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-color), var(--optional-color));
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(241, 94, 37, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.team-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(241, 94, 37, 0.4);
}

.team-icon-wrapper:hover::before {
    top: -30%;
    left: -30%;
}

.team-icon-wrapper i {
    font-size: 48px;
    color: white;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.team-icon-wrapper:hover i {
    transform: scale(1.1);
}

/* -------------- Section Styling -------------- */

section {
    margin-bottom: 3rem;
}

section h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--optional-color));
    border-radius: 2px;
}

/* -------------- Card Enhancements -------------- */

.card {
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* -------------- Details/Section Enhancements -------------- */

details {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

details:hover {
    border-color: rgba(241, 94, 37, 0.3);
    background: #fff;
}

details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--heading-color);
    padding: 4px 0;
    list-style: none;
    position: relative;
    padding-right: 24px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--main-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

details[open] {
    background: #fff;
    border-color: rgba(241, 94, 37, 0.2);
}

details p {
    margin-top: 12px;
    margin-bottom: 0;
}

.small {
    font-size: 13px;
}

.gap {
    height: 12px;
}

/* -------------- package details page -------------- */

.package-details .panel {
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.package-details .price {
    color: var(--optional-color);
    font-weight: 700;
}

@media (max-width: 767px) {
    .package-details .card img {
        height: 250px;
    }
}





