/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    font-style: italic;
    color: #121518;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #aa9166;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #aa9166;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #aa9166;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

/* Quote modal (global) */
.quote-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1050;
}

.quote-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quote-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 21, 24, 0.72);
}

.quote-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 30px 60px -30px rgba(18, 21, 24, 0.6);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #4d4f52;
    cursor: pointer;
}

.quote-modal__intro {
    font-size: 15px;
    color: #4d4f52;
    margin-bottom: 20px;
}

.quote-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.quote-form label {
    font-weight: 600;
    color: #121518;
    margin-bottom: 6px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #121518;
    border-radius: 0;
    font-size: 15px;
    color: #121518;
}

.quote-form textarea {
    resize: vertical;
}

@media (max-width: 575.98px) {
    .quote-modal__dialog {
        padding: 24px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #000000;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #aa9166;
    font-size: 75px;
    line-height: 55px;
    font-weight: 800;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90px;
    padding: 0 20px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    margin: 0;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 90px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #aa9166;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
    
    .top-bar .social {
        display: none;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    padding: 20px 0;
    transition: .3s;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #aa9166;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #aa9166;
    border-radius: 0;
}

.nav-bar .btn:hover {
    background: #aa9166;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 20px 60px;
    }
    
    .nav-bar.nav-sticky {
        padding: 10px 60px;
    }
    
    .nav-bar,
    .nav-bar .navbar {
        background: #121518 !important;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .nav-bar,
    .nav-bar .navbar {
        padding: 3px 0;
        background: #121518 !important;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #aa9166;
}

.page-header h2 {
    position: relative;
    color: #121518;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #121518;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #121518;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/**** Reccommended Packages ****/
/*******************************/
.reccommended-packages {
    margin-top: 24px;
    padding: 32px 0 48px;
    background: #ffffff;
}

.reccommended-packages__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.reccommended-packages__header h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    color: #121518;
}

.reccommended-packages__all {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #aa9166;
    text-decoration: none;
}

.reccommended-packages__all:hover,
.reccommended-packages__all:focus {
    text-decoration: underline;
}

.reccommended-packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.reccommended-packages .related-card {
    background: #101417;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 16px 34px -28px rgba(18, 21, 24, 0.6);
    display: flex;
    flex-direction: column;
}

.reccommended-packages .related-card__figure {
    display: block;
    overflow: hidden;
}

.reccommended-packages .related-card__figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reccommended-packages .related-card__figure:focus img,
.reccommended-packages .related-card__figure:hover img {
    transform: scale(1.04);
}

.reccommended-packages .related-card__body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.reccommended-packages .related-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.reccommended-packages .related-card__title a {
    color: #c6a674;
    text-decoration: none;
}

.reccommended-packages .related-card__title a:hover,
.reccommended-packages .related-card__title a:focus {
    color: #ffffff;
}

.reccommended-packages .related-card__feedback {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 18px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.reccommended-packages .related-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #c6a674;
    transition: color 0.2s ease;
}

.reccommended-packages .related-card__rating i {
    font-size: 13px;
}

.reccommended-packages .related-card__rating-value {
    margin-left: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.reccommended-packages .related-card__likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #ff6b6b;
    transition: color 0.2s ease;
}

.reccommended-packages .related-card__likes-count {
    color: rgba(255, 255, 255, 0.82);
}

.reccommended-packages .related-card:hover .related-card__title a,
.reccommended-packages .related-card:focus-within .related-card__title a {
    color: #ffffff;
}

.reccommended-packages .related-card:hover .related-card__rating,
.reccommended-packages .related-card:focus-within .related-card__rating {
    color: #ffffff;
}

.reccommended-packages .related-card:hover .related-card__likes,
.reccommended-packages .related-card:focus-within .related-card__likes {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .reccommended-packages {
        padding: 44px 0;
    }

    .reccommended-packages__header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
}

.section-header h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    top: 21px;
    background: transparent;
    border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;
    z-index: -1;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    bottom: 20px;
    background: transparent;
    border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;
    z-index: -1;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/******** Top Feature CSS ******/
/*******************************/
.feature-top {
    position: relative;
    background: #121518;
    margin-bottom: 45px;
}

.feature-top .col-md-3 {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}

.feature-top .feature-item i {
    color: #aa9166;
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-top .feature-item h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.feature-top .feature-item p {
    color: #999999;
    margin: 0;
    font-size: 18px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    background: #121518;
    margin-bottom: 30px;
}

.service .service-icon {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

/* When using images instead of icons, make sure they fit the box */
.service .service-icon {
    overflow: hidden;
}

.service .service-icon img {
    /* Show full image without cropping while keeping it centered */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform .45s ease;
}

.service .service-item:hover .service-icon img {
    transform: scale(1.03);
}

.service .service-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #121518;
    transition: .5s;
}

.service .service-item:hover .service-icon i {
    margin-top: -15px;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 30px;
    font-weight: 600;
    color: #aa9166;
}

.service .service-item p {
    margin: 0;
    color: #999999;
    padding: 0 25px 25px 25px;
    font-size: 18px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #000000;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #aa9166;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 50px 15px 30px 15px;
    text-align: center;
    background: #121518;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.team .team-text p {
    margin: 0;
    color: #999999;
}

.team .team-social {
    position: absolute;
    width: calc(100% - 60px);
    height: 50px;
    top: -25px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #aa9166;
    font-size: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    text-align: center;
    color: #121518;
    transition: .3s;
}

.team .team-social a:last-child {
    margin-right: 0;
}

.team .team-social a:hover {
    color: #ffffff;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #aa9166;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #aa9166;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #121518;
    font-size: 18px;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #121518;
    color: #aa9166;
    font-weight: 700;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    padding: 30px;
    background: #121518;
    overflow: hidden;
}

.testimonial .testimonial-item i {
    position: absolute;
    top: 0;
    right: 0;
    color: #333333;
    font-size: 60px;
    transform: rotate(45deg);
    z-index: 1;
}

.testimonial .testimonial-item .col-12 {
    margin-top: 20px;
}

.testimonial .testimonial-item img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 3px solid #aa9166;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial .testimonial-item h2 {
    color: #aa9166;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-item p {
    color: #999999;
    font-size: 16px;
    margin: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.testimonial .owl-dot.active {
    background: #121518;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-item img {
    width: 100%;
    margin-bottom: 25px;
}

.blog .blog-item h3 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-item .meta {
    padding: 0 0 15px 0;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    font-size: 16px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 10px;
}

.blog .blog-item a.btn:hover {
    color: #121518;
}

.blog .owl-nav,
.blog .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.blog .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.blog .owl-dot.active {
    background: #121518;
}

.blog .pagination .page-link {
    color: #121518;
    border-radius: 0;
    border-color: #aa9166;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #121518;
    background: #aa9166;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline {
    position: relative;
    padding: 45px 0;
}

.timeline .timeline-start {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.timeline .timeline-container {
    padding: 0 15px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-top: -5px;
}

.timeline .timeline-container.left {
    left: 0;
}

.timeline .timeline-container.right {
    left: 50%;
}

.timeline .timeline-container::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::before {
    top: 0;
    right: 0;
}

.timeline .timeline-container.right::before {
    bottom: 0;
    left: 0;
}

.timeline .timeline-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::after {
    bottom: 0;
    right: 0;
}

.timeline .timeline-container.right::after {
    top: 0;
    left: 0;
}

.timeline .timeline-container:first-child::before,
.timeline .timeline-container:last-child::before {
    display: none;
}

.timeline .timeline-container .timeline-content {
    padding: 30px;
    background: #121518;
    position: relative;
    border-right: 5px solid #aa9166;
}

.timeline .timeline-container.right .timeline-content {
    border-left: 5px solid #aa9166;
}

.timeline .timeline-container .timeline-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.timeline .timeline-container .timeline-content h2 span {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 10px;
    color: #121518;
    background: #aa9166;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

.timeline .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #999999;
}

@media (max-width: 767.98px) {
    .timeline .timeline-container {
        width: 100%;
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }
    
    .timeline .timeline-container:last-child {
        padding-bottom: 0;
    }
    
    .timeline .timeline-container.right {
        left: 0%;
    }

    .timeline .timeline-container.left::after, 
    .timeline .timeline-container.right::after,
    .timeline .timeline-container.left::before,
    .timeline .timeline-container.right::before {
        width: 5px;
        height: 35px;
        left: 15px;
    }
    
    .timeline .timeline-container.left .timeline-content,
    .timeline .timeline-container.right .timeline-content {
        border-left: 5px solid #aa9166;
        border-right: none;
    }
}


/*******************************/
/****** Accommodations CSS *****/
/*******************************/
.accommodations {
    position: relative;
    padding: 60px 0;
    background: #ffffff;
}

.accommodations .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.accommodations__subtitle {
    max-width: 640px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #4f4b45;
    line-height: 1.7;
}

.accommodations .accommodations-carousel {
    position: relative;
    padding-bottom: 0;
    padding-top: 48px;
}

.accommodations .accommodation-item {
    position: relative;
    margin-bottom: 0;
    overflow: visible;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.accommodations .accommodation-item:hover,
.accommodations .accommodation-item:focus-within {
    transform: translateY(-8px);
}

.accommodations .accommodation-wrap {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.45s ease;
}

.accommodations .accommodation-item:hover .accommodation-wrap,
.accommodations .accommodation-item:focus-within .accommodation-wrap {
    box-shadow: 0 22px 48px rgba(18, 21, 24, 0.18);
}

.accommodations img {
    position: relative;
    width: 100%; 
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.accommodations figure {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0), rgba(0, 0, 0, 1) 90%);
}

.accommodations figure p {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.accommodations figure p::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

.accommodations figure a {
    font-family: 'EB Garamond', serif;
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    transition: .3s;
}

.accommodations figure a:hover {
    text-decoration: none;
    color: #ffffff;
}

.accommodations figure span {
    position: relative;
    color: #999999;
    font-size: 16px;
}


.accommodations .owl-stage-outer {
    padding: 6px 6px 18px;
}

.accommodations .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 12px;
    width: auto;
    pointer-events: none;
    z-index: 3;
}

.accommodations .owl-nav button {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f9edc9 0%, #d9b66d 45%, #aa9166 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 30px rgba(170, 145, 102, 0.45);
}

.accommodations .owl-nav button:hover,
.accommodations .owl-nav button:focus {
    background: linear-gradient(135deg, #cb9f45 0%, #8a6b2b 100%);
    color: #ffffff;
    transform: translateY(-2px) scale(1.04);
    outline: none;
    box-shadow: 0 18px 34px rgba(170, 145, 102, 0.55);
}

.accommodations .owl-nav-icon {
    color: inherit;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.accommodations .owl-dots {
    margin-top: 12px;
    text-align: center;
}

.accommodations .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 4px 6px;
    background: #d8d1c5;
    transition: background 0.3s ease, transform 0.3s ease;
}

.accommodations .owl-dot.active span,
.accommodations .owl-dot:hover span {
    background: #aa9166;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .accommodations {
        padding: 45px 0;
    }

    .accommodations .accommodations-carousel {
        padding-bottom: 14px;
    }
}

@media (max-width: 576px) {
    .accommodations__subtitle {
        font-size: 15px;
    }

    .accommodations .owl-nav {
        top: 10px;
        right: 10px;
    }

    .accommodations .owl-nav button {
        width: 38px;
        height: 38px;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #aa9166;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #121518;
    border: 2px solid #aa9166;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #aa9166;
    color: #121518;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #121518;
    background: #aa9166;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .5s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.portfolio figure {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0), rgba(0, 0, 0, 1) 90%);
}

.portfolio figure p {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.portfolio figure p::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

.portfolio figure a {
    font-family: 'EB Garamond', serif;
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    transition: .3s;
}

.portfolio figure a:hover {
    text-decoration: none;
    color: #ffffff;
}

.portfolio figure span {
    position: relative;
    color: #999999;
    font-size: 16px;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    padding: 30px;
    background: #121518;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 2px solid #aa9166;
    background: #121518;
}

.contact .contact-item i {
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #aa9166;
    border: 2px solid #aa9166;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 15px;
    min-width: 0;
}

.contact .contact-text h2 {
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Remove hover effects inside contact blocks */
.contact .contact-item:hover {
    background: #121518;
}

.contact .contact-item a,
.contact .contact-item a:hover {
    color: #ffffff;
    text-decoration: none;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    margin-bottom: 30px;
}

.contact .contact-form input {
    height: 60px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form textarea {
    height: 190px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form .btn {
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    max-width: 900px;
    margin: 45px auto -140px auto;
    padding: 30px 15px;
    background: #aa9166;
    z-index: 1;
}

.newsletter .section-header {
    margin-bottom: 25px;
}

.newsletter .section-header h2::before,
.newsletter .section-header h2::after {
    border-color: #ffffff;
}

.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border-radius: 0;
    border: 2px solid #aa9166;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 180px;
    background: #121518;
    color: #ffffff;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: #999999;
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #aa9166;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #aa9166;
    letter-spacing: 1px;
}

/* ======================== PACKAGE ITINERARY STYLES ======================== */

.package-details {
    padding: 60px 0;
    background: #ffffff;
}

.package-tabs-container {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.itinerary-hero-label {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    color: #121518;
    font-family: 'EB Garamond', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.itinerary-hero-label::before,
.itinerary-hero-label::after {
    content: '';
    flex: 1 1 auto;
    height: 2px;
    background: rgba(18, 21, 24, 0.2);
}

.itinerary-hero-label span {
    margin: 0 18px;
    padding: 6px 28px;
    border: 2px solid #aa9166;
    border-radius: 999px;
    background: #ffffff;
    color: #aa9166;
    font-size: 15px;
    letter-spacing: 6px;
}

.package-tabs {
    margin-bottom: 0;
    border: 1px solid rgba(18, 21, 24, 0.15);
    border-radius: 999px;
    display: inline-flex;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    isolation: isolate;
}

.package-tabs::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 12px 24px -18px rgba(18, 21, 24, 0.4);
    opacity: 0.6;
    z-index: -1;
}

.package-tabs .nav-item {
    margin: 0;
    flex: 1 1 auto;
}

.package-tabs .nav-link {
    border: none;
    border-right: 1px solid rgba(18, 21, 24, 0.12);
    border-radius: 0;
    background: transparent;
    color: #3a3d41;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 26px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease, background 0.2s ease;
}

.package-tabs .nav-item:last-child .nav-link {
    border-right: none;
}

.package-tabs .nav-link i {
    margin-right: 6px;
    font-size: 15px;
}

.package-tabs .nav-link:hover,
.package-tabs .nav-link:focus {
    color: #aa9166;
    background: rgba(170, 145, 102, 0.08);
}

.package-tabs .nav-link.active {
    color: #121518;
    background: rgba(170, 145, 102, 0.18);
    font-weight: 700;
}

.package-tab-content {
    background: #fff;
    border-radius: 8px;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

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

/* Overview Section */
.overview-section {
    padding: 10px 0;
}

.overview-image {
    margin-bottom: 30px;
}

.overview-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.02);
}

.overview-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #121518;
    margin-bottom: 20px;
    font-style: italic;
}

.overview-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.overview-highlights {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.overview-highlights li {
    padding: 15px 0 15px 0;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid #f0f0f0;
}

.overview-highlights li:last-child {
    border-bottom: none;
}

.overview-highlights li strong {
    color: #aa9166;
    font-weight: 700;
}

/* Itinerary Section */
.itinerary-section h2 {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #121518;
    margin-bottom: 10px;
    font-style: italic;
}

.itinerary-intro {
    font-size: 16px;
    color: #999;
    margin-bottom: 50px;
}

.itinerary-day {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

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

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #aa9166;
}

.day-header h3 {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #121518;
    margin: 0;
    font-style: italic;
}

.day-header h3 i {
    margin-right: 12px;
    color: #aa9166;
    font-size: 28px;
}

.day-badge {
    background: linear-gradient(135deg, #aa9166, #c4a876);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(170, 145, 102, 0.3);
}

.day-content {
    margin-left: 20px;
}

.timeline-item {
    display: flex;
    margin-bottom: 35px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 65px;
    width: 3px;
    height: calc(100% + 15px);
    background: linear-gradient(180deg, #aa9166, #e8dcc8);
}

.timeline-marker {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #aa9166, #c4a876);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(170, 145, 102, 0.4);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
}

.timeline-text h4 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #121518;
    margin-bottom: 12px;
    font-style: italic;
}

.timeline-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.timeline-text p strong {
    color: #aa9166;
}

.best-time-section {
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(170, 145, 102, 0.1), rgba(196, 168, 118, 0.05));
    border-left: 5px solid #aa9166;
    border-radius: 8px;
}

.best-time-section h3 {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
}

.best-time-section h5 {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    font-style: italic;
    margin-top: 20px;
    color: #aa9166;
}

/* Pricing Section */
.pricing-section h2 {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #121518;
    margin-bottom: 40px;
    font-style: italic;
}

.price-box {
    background: linear-gradient(135deg, #121518 0%, #2a2e35 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.price-display h3 {
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 25px;
}

.currency {
    font-size: 32px;
    margin-right: 8px;
    font-weight: 300;
    color: #aa9166;
}

.amount {
    font-size: 64px;
    font-weight: 700;
    color: #aa9166;
}

.unit {
    font-size: 16px;
    margin-left: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.price-note {
    font-size: 13px;
    opacity: 0.8;
    margin: 20px 0 0;
    color: rgba(255,255,255,0.7);
}

.included-section,
.not-included-section {
    margin-bottom: 40px;
}

.included-section h4,
.not-included-section h4 {
    color: #121518;
    margin-top: 40px;
    font-size: 22px;
    margin-bottom: 25px;
}

.included-list,
.not-included-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.not-included-list li {
    padding: 14px 0 14px 35px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.included-list li i {
    position: absolute;
    left: 0;
    color: #aa9166;
    font-size: 18px;
}

.not-included-list li i {
    position: absolute;
    left: 0;
    color: #999;
}

.not-included-list li {
    padding-left: 25px !important;
}

.not-included-list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 18px;
    font-weight: bold;
}

.pricing-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table tr:hover {
    background: #fafafa;
}

.pricing-table th {
    background: linear-gradient(135deg, #121518, #2a2e35) !important;
    color: white !important;
}

.family-options {
    margin-top: 40px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #aa9166;
}

.btn-large {
    padding: 16px 45px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #aa9166, #c4a876) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(170, 145, 102, 0.3) !important;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(170, 145, 102, 0.4) !important;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #aa9166;
    box-shadow: 0 4px 12px rgba(170, 145, 102, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #fafafa;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #121518;
    font-size: 15px;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question.open {
    background: #aa9166;
    color: white;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question.open i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 25px;
    background: white;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    border-top: 2px solid #f0f0f0;
}

/* Static FAQ */
.faq-static {
    max-width: 840px;
    margin: 0 auto;
}

.faq-static-item {
    background: #f7f0e6;
    border-radius: 2px;
    padding: 26px 30px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(32, 22, 7, 0.05);
}

.faq-static-question {
    font-size: 18px;
    font-weight: 600;
    color: #121518;
    margin-bottom: 10px;
}

.faq-static-answer {
    margin: 0;
    color: #4f4b45;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-layout {
        margin-left: 0;
        margin-right: 0;
        padding-left: 8px;
        padding-right: 8px;
    }

    .package-tabs-container {
        align-items: stretch;
        gap: 14px;
    }

    .itinerary-hero-label {
        letter-spacing: 3px;
    }

    .itinerary-hero-label::before,
    .itinerary-hero-label::after {
        display: none;
    }

    .itinerary-hero-label span {
        margin: 0 auto;
        display: inline-block;
    }

    .package-tabs {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-radius: 12px;
    }

    .package-tabs::before {
        display: none;
    }

    .package-tabs .nav-item {
        width: 100%;
    }

    .package-tabs .nav-link {
        border-right: none;
        border-bottom: 1px solid rgba(18, 21, 24, 0.12);
        text-align: left;
        padding: 14px 18px;
    }

    .package-tabs .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 2px solid #f0f0f0;
    }

    .day-header h3 {
        font-size: 20px;
    }

    .day-badge {
        margin-top: 12px;
    }

    .price-amount {
        flex-direction: column;
    }

    .currency {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .amount {
        font-size: 48px;
    }

    .unit {
        margin-left: 0;
        margin-top: 8px;
    }

    .overview-content h2 {
        font-size: 26px;
    }

    .pricing-section h2,
    .itinerary-section h2 {
        font-size: 26px;
    }

    .price-box {
        padding: 40px 25px;
    }

    .day-content {
        margin-left: 0;
        margin-top: 20px;
    }

    .timeline-item::after {
        left: 26px !important;
    }
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #aa9166;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    background: #000000;
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #999999;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu .f-menu a:hover {
    color: #aa9166;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #aa9166;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* ======================== INTERNATIONAL TELEPHONE INPUT STYLES ======================== */
/* Make the container take full width */
       .iti {
  width: 100%;
  display: block !important;
}

/* Make the actual input field expand fully */
.iti__selected-flag {
  width: auto !important; /* Let the flag dropdown take only needed space */
}

.iti > .iti__tel-input {
  width: 100% !important;
  padding-left: 52px !important; /* Prevent text from overlapping flag */
}

/* Ensure the form-control class (if used) doesn't conflict */
.form-control {
  width: 100% !important;
  box-sizing: border-box !important;
}