
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    background: var(--bs-secondary);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    /* background: rgba(0, 0, 0, 0.5); */
    background: #000000;
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 700;   
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 5px 0;
    /* color: var(--bs-dark); */
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /* color: #003366; */
    color:#D4AF37;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.navbar-light .navbar-brand h1{
    color: #D4AF37;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top:10px;
    margin-bottom:10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}


/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    /* box-shadow: 0 0 50px rgba(234, 0, 30, .3); */
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    /* background: var(--bs-dark); */
    background:#111111;
}

.footer .footer-item a {
    line-height: 35px;
    /* color: var(--bs-body); */
    color:#fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color:#fff;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    /* color: var(--bs-primary); */
    color: #D4AF37;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* background: var(--bs-dark); */
    background: #000;
}
/*** copyright end ***/


/* new css start */


/* Header Section */
h1 {
  font-size: 36px;
  /* color: #007bff; */
  color: #D4AF37;
}

/* Calendar Section */
#calendar {
  max-width: 100%;
  margin: 0 auto;
}

.fc-event {
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}

.fc-event.fc-state-disabled {
  background-color: #dc3545 !important; /* Unavailable slots in red */
}

.fc-event.fc-state-valid {
  background-color: #28a745 !important; /* Available slots in green */
  cursor: pointer;
}

.fc-toolbar h2 {
  color: #007bff;
}

/* Booking Form */
.card {
  border-radius: 8px;
}

.card-header {
  background-color: #007bff;
}

.card-header h4 {
  margin: 0;
  color: #fff;
}

.form-group label {
  font-weight: bold;
}

.form-group input {
  font-size: 16px;
}

.btn-success {
  background-color: #28a745;
  border: none;
  font-size: 18px;
}

.btn-success:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  #calendar {
    margin-top: 20px;
  }
}
 /* new css end */

 

/*** Testimonial start ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}

/*** Testimonial end***/

/* Services section start */

/* Section Styling */
.services-section {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-white);
}

.section-subtitle {
    color: var(--bs-cyan);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-desc {
    color: #bdd5f3;
    max-width: 700px;
    margin: auto;
}

/* Service Cards */
.service-card {
    /* background: var(--bs-dark); */
    background: #57595B;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    /* background: var(--bs-primary); */
    background: rgba(212, 175, 55, 0.5) !important;
    border-color: var(--bs-cyan);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--bs-white);
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--bs-cyan);
    color: var(--bs-dark);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    color: #dbe5f7;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .service-card {
        padding: 25px;
    }
}
/* Services section end */


/* Parallax style start */

/* CTA Parallax Section */
.cta-parallax {
    position: relative;
    background: url('../img/carousel-1.jpg') no-repeat center center / cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    text-align: center;
    overflow: hidden;
}

.cta-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6); 
    z-index: 1;
}

.cta-parallax .cta-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-parallax h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cta-parallax p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
    color: #dbe5f7;
}

.btn-cta {
    background-color: var(--bs-cyan);

    color: var(--bs-dark);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    transform: translateY(-3px);
}

/* Parallax effect for larger screens */
.cta-parallax::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../img/carousel-1.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-parallax {
        height: 400px;
    }

    .cta-parallax h2 {
        font-size: 2rem;
    }

    .cta-parallax p {
        font-size: 1rem;
    }
}


/* Parallax style end */

/* Privacy Section start */

/* Privacy Section */
.privacy-section {
    background: #f8f9fc;
    font-family: var(--bs-font-sans-serif);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
}

.privacy-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid var(--bs-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.privacy-box h3 {
    font-size: 1.5rem;
    color: var(--bs-primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-box p,
.privacy-box ul li {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.privacy-box ul {
    padding-left: 18px;
}

.privacy-box ul li {
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-box {
        padding: 20px;
    }

    .privacy-box h3 {
        font-size: 1.3rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

/* privacy section end */

/* sticky footer css start */

/* GLOBAL STICKY FOOTER BAR */
.global-sticky-footer {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: #f2f2f2 !important; /* light grey on all screens */
    color: #000;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    border-radius: 16px 16px 0 0;
    font-family: Arial, sans-serif;
    animation: slideUp 0.8s ease-out forwards;
}

/* Slide-up animation */
@keyframes slideUp {
    from { bottom: -150px; opacity: 0; }
    to   { bottom: 0; opacity: 1; }
}

/* Left block (mobile default – stacked) */
.gsf-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.gsf-title {
    font-weight: 700;
    font-size: 16px;
}

.gsf-sub {
    font-size: 14px;
    opacity: 0.95;
}

.gsf-call-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.25s ease-in-out;
}

/* Button (mobile only) */
.gsf-call-btn {
    background: #28a745;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.25s ease-in-out;
}

/* Hover animation */
.gsf-call-btn:hover {
    background: #1e7e34;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* -------------------------
   DESKTOP (LARGE SCREEN)
   ------------------------- */
@media (min-width: 992px) {
    .global-sticky-footer {
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    /* Convert 3 lines → 1 line */
    .gsf-left {
        flex-direction: row;
        gap: 20px;
        font-size: 18px;
    }

    .gsf-sub {
        display: none; /* hide the second line */
    }

    /* Merge first + third line */
    .gsf-title::after {
        content: " — Call Now: 1-888-908-4898";
        font-weight: 700;
        margin-left: 10px;
    }

    /* Hide mobile button */
    .gsf-call-btn {
        display: none;
    }
}

/* -------------------------
   MOBILE SMALL SCREENS
   ------------------------- */
@media (max-width: 480px) {
    .global-sticky-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-bottom: 18px;
    }

    .gsf-call-btn {
        width: 100%;
        text-align: center;
    }
}


/* sticky footer css end */

/* add new css of flight start */

  :root {
      --sky: #0a1628;
      --deep: #071020;
      --gold: #e8b86d;
      --gold-light: #f5d48e;
      --white: #f0eeea;
      --muted: rgba(240,238,234,0.55);
      --card-bg: rgba(255,255,255,0.04);
      --card-border: rgba(232,184,109,0.18);
      --transition: 0.45s cubic-bezier(0.22,1,0.36,1);
    }

.flights-section {
      position: relative;
      padding: 90px 0 80px;
      background: linear-gradient(160deg, #0a1628 0%, #071020 60%, #0d1f3c 100%);
      overflow: hidden;
    }

    /* Star particles */
    .flights-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 34% 72%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 58% 9%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 76% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 91% 27%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 23% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 47% 40%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.4) 0%, transparent 100%);
      pointer-events: none;
    }

    /* Glow orb */
    .flights-section::after {
      content: '';
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, rgba(232,184,109,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .section-inner { position: relative; z-index: 2; max-width: 1260px; margin: 0 auto; padding: 0 24px; }

    /* ── HEADER ── */
    .section-header { text-align: center; margin-bottom: 56px; }

    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 18px;
    }
    .section-eyebrow span { display: block; width: 30px; height: 1px; background: var(--gold); }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.01em;
      color: var(--white);
    }
    .section-title em { font-style: italic; color: var(--gold); }

    .section-sub {
      margin-top: 14px;
      font-size: 15px; color: var(--muted);
      max-width: 480px; margin-left: auto; margin-right: auto;
      line-height: 1.65;
    }

    /* ── SLIDER WRAPPER ── */
    .slider-outer {
      position: relative;
    }

    .slider-track-wrap {
      overflow: hidden;
      border-radius: 20px;
    }

    .slider-track {
      display: flex;
      gap: 24px;
      transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
      will-change: transform;
    }

    /* ── CARD ── */
    .flight-card {
      flex: 0 0 calc(33.333% - 16px);
      min-width: 0;
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      background: #111c2e;
      border: 1px solid var(--card-border);
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }

    @media(max-width: 900px) { .flight-card { flex: 0 0 calc(50% - 12px); } }
    @media(max-width: 580px) { .flight-card { flex: 0 0 100%; } }

    .flight-card:hover {
      transform: translateY(-10px) scale(1.018);
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1.5px var(--gold);
    }

    /* Image */
    .card-img-wrap {
      position: relative;
      height: 240px;
      overflow: hidden;
    }

    .card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
      display: block;
    }

    .flight-card:hover .card-img-wrap img {
      transform: scale(1.1);
    }

    /* Gradient overlay on image */
    .card-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(7,16,32,0.7) 70%,
        rgba(7,16,32,0.95) 100%
      );
    }

    /* Badge on image */
    .card-badge {
      position: absolute;
      top: 16px; left: 16px;
      z-index: 2;
      background: var(--gold);
      color: #071020;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
    }

    /* Price tag */
    .card-price {
      position: absolute;
      bottom: 16px; right: 16px;
      z-index: 2;
      text-align: right;
    }
    .card-price .from { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
    .card-price .amount {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }

    /* Route tag on image */
    .card-route-img {
      position: absolute;
      bottom: 16px; left: 16px;
      z-index: 2;
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 500; color: #fff;
    }
    .card-route-img .iata {
      font-family: 'Playfair Display', serif;
      font-size: 15px; font-weight: 700;
    }
    .card-route-img .arrow {
      color: var(--gold);
      font-size: 14px;
    }

    /* Body */
    .card-body {
      padding: 20px 22px 22px;
      position: relative;
    }

    .card-destination {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .card-country {
      font-size: 12px; color: var(--gold);
      font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .card-meta {
      display: flex; gap: 16px;
      flex-wrap: wrap;
    }
    .meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: var(--muted);
    }
    .meta-icon { font-size: 13px; color: var(--gold); }

    /* Hover reveal CTA */
    .card-cta {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(7,16,32,1) 60%, transparent);
      padding: 28px 22px 22px;
      transform: translateY(100%);
      transition: transform var(--transition);
      display: flex; align-items: center; justify-content: space-between;
    }
    .flight-card:hover .card-cta {
      transform: translateY(0);
    }

    .cta-btn {
      display: inline-block;
      background: var(--gold);
      color: #071020;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 10px 22px;
      border-radius: 50px;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      text-decoration: none;
    }
    .cta-btn:hover { background: var(--gold-light); transform: scale(1.04); }

    .cta-save {
      font-size: 11px; color: var(--muted);
      display: flex; align-items: center; gap: 5px;
    }
    .cta-save span { color: #6ee7b7; font-weight: 600; }

    /* ── NAV ARROWS ── */
    .slider-nav {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin-top: 40px;
    }

    .nav-btn {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      color: var(--gold);
      font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.2s;
      backdrop-filter: blur(8px);
    }
    .nav-btn:hover { background: var(--gold); color: #071020; border-color: var(--gold); transform: scale(1.1); }
    .nav-btn:disabled { opacity: 0.28; cursor: not-allowed; transform: none; }

    /* Dots */
    .slider-dots {
      display: flex; align-items: center; gap: 8px;
      padding: 0 10px;
    }
    .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(232,184,109,0.25);
      cursor: pointer;
      transition: all 0.3s;
    }
    .dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 4px;
    }

    /* ── PROGRESS BAR ── */
    .slider-progress {
      height: 2px;
      background: rgba(232,184,109,0.12);
      border-radius: 2px;
      margin-top: 20px;
      overflow: hidden;
      max-width: 400px;
      margin-left: auto; margin-right: auto;
    }
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      transition: width 0.5s ease;
    }

    /* ── PROMO STRIP ── */
    .promo-strip {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media(max-width: 720px) { .promo-strip { grid-template-columns: 1fr; } }

    .promo-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 14px;
      padding: 26px 24px;
      display: flex; align-items: center; gap: 18px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      backdrop-filter: blur(6px);
    }
    .promo-card:hover {
      background: rgba(232,184,109,0.07);
      border-color: rgba(232,184,109,0.4);
      transform: translateY(-4px);
    }
    .promo-icon {
      font-size: 32px;
      flex-shrink: 0;
      filter: drop-shadow(0 0 8px rgba(232,184,109,0.4));
    }
    .promo-text h4 {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 700;
      color: var(--white); margin-bottom: 4px;
    }
    .promo-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }

    /* ── TOOLTIP on hover ── */
    .card-tooltip {
      position: absolute;
      top: 12px; right: 12px;
      z-index: 10;
      background: rgba(7,16,32,0.9);
      border: 1px solid var(--card-border);
      color: var(--white);
      font-size: 11px; line-height: 1.5;
      padding: 8px 12px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity 0.3s, transform 0.3s;
      backdrop-filter: blur(8px);
    }
    .flight-card:hover .card-tooltip {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* add new css of flight end */

/* add new css of train booking start */


    .train-features-section {
            position: relative;
            background: var(--gray-color);
            padding: 100px 0 110px;
            overflow: hidden;
        }

        /* subtle track lines in background */
        .train-features-section::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 6px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color) 0px,
                var(--primary-color) 40px,
                transparent 40px,
                transparent 60px
            );
            opacity: 0.25;
        }

        .train-features-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 6px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color) 0px,
                var(--primary-color) 40px,
                transparent 40px,
                transparent 60px
            );
            opacity: 0.25;
        }

        /* ─── CONTAINER ─────────────────────────────────────── */
        .tf-container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── SECTION HEAD ──────────────────────────────────── */
        .tf-section-head {
            text-align: center;
            margin-bottom: 64px;
        }

        .tf-section-head .sub-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            color: var(--accent-dark);
            font-family: var(--body-font);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .tf-section-head .sub-badge i {
            font-size: 0.8rem;
        }

        .tf-section-head h2 {
            font-family: var(--heading-font);
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--heading-color);
            font-weight: 400;
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .tf-section-head h2 em {
            font-style: italic;
            color: var(--primary-color);
        }

        .tf-section-head p {
            font-size: 0.975rem;
            color: var(--text-color);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ─── GRID ──────────────────────────────────────────── */
        .tf-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* ─── CARD ──────────────────────────────────────────── */
        .tf-card {
            background: var(--white-color);
            border: 1.5px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 40px 32px 36px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition:
                transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
        }

        /* top accent bar */
        .tf-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition);
            border-radius: var(--card-radius) var(--card-radius) 0 0;
        }

        /* background fill on hover */
        .tf-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(150deg, rgba(109,124,106,0.05) 0%, rgba(109,124,106,0.02) 100%);
            opacity: 0;
            transition: opacity var(--transition);
            border-radius: var(--card-radius);
        }

        .tf-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow:
                0 20px 60px rgba(109,124,106,0.14),
                0 4px 16px rgba(109,124,106,0.08);
        }

        .tf-card:hover::before { transform: scaleX(1); }
        .tf-card:hover::after  { opacity: 1; }

        /* ─── CARD NUMBER ───────────────────────────────────── */
        .tf-card-number {
            position: absolute;
            top: 24px;
            right: 28px;
            font-family: var(--heading-font);
            font-size: 3.5rem;
            color: var(--border-color);
            line-height: 1;
            transition: color var(--transition);
            z-index: 1;
        }

        .tf-card:hover .tf-card-number {
            color: var(--accent-light);
        }

        /* ─── ICON BOX ──────────────────────────────────────── */
        .tf-icon-box {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--accent-light);
            border: 1.5px solid rgba(109,124,106,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            transition:
                background var(--transition),
                color var(--transition),
                transform var(--transition),
                border-color var(--transition);
        }

        .tf-card:hover .tf-icon-box {
            background: var(--primary-color);
            color: var(--white-color);
            transform: scale(1.1) rotate(-4deg);
            border-color: var(--primary-color);
        }

        /* ─── CARD TEXT ─────────────────────────────────────── */
        .tf-card-content { position: relative; z-index: 1; }

        .tf-card-content h4 {
            font-family: var(--heading-font);
            font-size: 1.25rem;
            color: var(--heading-color);
            font-weight: 400;
            margin-bottom: 12px;
            transition: color var(--transition);
        }

        .tf-card:hover .tf-card-content h4 {
            color: var(--accent-dark);
        }

        .tf-card-content p {
            font-size: 0.875rem;
            line-height: 1.75;
            color: var(--text-color);
            margin-bottom: 28px;
        }

        /* ─── CARD LINK ─────────────────────────────────────── */
        .tf-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--body-font);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 1.5px solid var(--accent-light);
            padding-bottom: 3px;
            transition:
                color var(--transition),
                border-color var(--transition),
                gap var(--transition);
        }

        .tf-card-link i {
            font-size: 0.75rem;
            transition: transform var(--transition);
        }

        .tf-card:hover .tf-card-link {
            color: var(--accent-dark);
            border-color: var(--accent-dark);
            gap: 14px;
        }

        .tf-card:hover .tf-card-link i {
            transform: translateX(4px);
        }

        /* ─── FEATURED / WIDE CARD ──────────────────────────── */
        .tf-card.tf-card--wide {
            grid-column: span 2;
            display: flex;
            gap: 36px;
            align-items: flex-start;
            background: var(--primary-black-color);
            border-color: var(--primary-black-color);
        }

        .tf-card.tf-card--wide .tf-card-number { color: rgba(255,255,255,0.06); }
        .tf-card.tf-card--wide .tf-card-content h4 { color: var(--white-color); }
        .tf-card.tf-card--wide .tf-card-content p  { color: rgb(50 38 38 / 55%); }
        .tf-card.tf-card--wide .tf-card-link       { color: var(--accent-light); border-color: rgba(232,237,231,0.25); }
        .tf-card.tf-card--wide:hover .tf-card-link { color: var(--white-color); border-color: var(--white-color); }

        .tf-card.tf-card--wide .tf-icon-box {
            background: rgba(109,124,106,0.2);
            border-color: rgba(109,124,106,0.3);
            color: var(--accent-light);
            flex-shrink: 0;
            width: 72px; height: 72px;
            font-size: 1.75rem;
        }

        .tf-card.tf-card--wide:hover .tf-icon-box {
            background: var(--primary-color);
            color: var(--white-color);
        }

        .tf-card.tf-card--wide::before {
            background: linear-gradient(90deg, var(--accent-light), var(--primary-color));
        }

        /* ─── BOTTOM CTA STRIP ──────────────────────────────── */
        .tf-cta-strip {
            margin-top: 60px;
            background: var(--white-color);
            border: 1.5px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 36px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            transition: box-shadow var(--transition), border-color var(--transition);
        }

        .tf-cta-strip:hover {
            border-color: var(--primary-color);
            box-shadow: 0 12px 40px rgba(109,124,106,0.1);
        }

        .tf-cta-strip-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .tf-cta-icon {
            width: 56px; height: 56px;
            background: var(--accent-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .tf-cta-strip-left h5 {
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--heading-color);
            margin-bottom: 4px;
        }

        .tf-cta-strip-left p {
            font-size: 0.85rem;
            color: var(--text-color);
        }

        /* ─── PRIMARY BUTTON ────────────────────────────────── */
        .tf-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--body-font);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--white-color);
            background: var(--primary-black-color);
            border: 2px solid var(--primary-black-color);
            border-radius: 50px;
            padding: 14px 32px;
            text-decoration: none;
            transition:
                background var(--transition),
                color var(--transition),
                border-color var(--transition),
                gap var(--transition);
            white-space: nowrap;
        }

        .tf-btn i { font-size: 0.8rem; transition: transform var(--transition); }

        .tf-btn:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            gap: 16px;
        }

        .tf-btn:hover i { transform: translateX(3px); }

        .tf-btn.tf-btn--outline {
            background: transparent;
            color: var(--heading-color);
            border-color: var(--border-color);
        }

        .tf-btn.tf-btn--outline:hover {
            background: var(--primary-color);
            color: var(--white-color);
            border-color: var(--primary-color);
        }

        /* ─── STATS ROW ─────────────────────────────────────── */
        .tf-stats {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 72px;
            border: 1.5px solid var(--border-color);
            border-radius: var(--card-radius);
            background: var(--white-color);
            overflow: hidden;
        }

        .tf-stat {
            flex: 1;
            text-align: center;
            padding: 28px 20px;
            border-right: 1.5px solid var(--border-color);
            transition: background var(--transition);
        }

        .tf-stat:last-child { border-right: none; }

        .tf-stat:hover { background: var(--accent-light); }

        .tf-stat strong {
            display: block;
            font-family: var(--heading-font);
            font-size: 2rem;
            color: var(--heading-color);
            line-height: 1;
            margin-bottom: 6px;
        }

        .tf-stat span {
            font-size: 0.8rem;
            color: var(--text-color);
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        /* ─── RESPONSIVE ────────────────────────────────────── */
        @media (max-width: 1024px) {
            .tf-grid { grid-template-columns: repeat(2, 1fr); }
            .tf-card.tf-card--wide { grid-column: span 2; }
        }

        @media (max-width: 768px) {
            .train-features-section { padding: 72px 0 80px; }
            .tf-grid { grid-template-columns: 1fr; gap: 20px; }
            .tf-card.tf-card--wide {
                grid-column: span 1;
                flex-direction: column;
                gap: 0;
            }
            .tf-card.tf-card--wide .tf-icon-box { margin-bottom: 28px; }
            .tf-stats { flex-wrap: wrap; }
            .tf-stat {
                flex: 1 1 48%;
                border-bottom: 1.5px solid var(--border-color);
            }
            .tf-stat:nth-child(3), .tf-stat:nth-child(4) { border-bottom: none; }
            .tf-cta-strip { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
            .tf-section-head { margin-bottom: 48px; }
        }

        @media (max-width: 480px) {
            .tf-card { padding: 30px 22px 28px; }
            .tf-cta-strip { gap: 20px; }
        }
  

/* add new css of train booking end */


/* add new css of hotel booking start */

/* ===== ROOM SLIDER TWO - CSS ===== */

.luxivo-room_two {
  overflow: hidden;
}

.luxivo-room_two .pt-120 { padding-top: 120px; }
.luxivo-room_two .pb-120 { padding-bottom: 120px; }

/* Slider Wrapper */
.room-slider-two {
  display: flex;
  gap: 24px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 10px 4px 30px;
  scroll-behavior: smooth;
}

.room-slider-two.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* Each Room Card */
.luxivo-room-item.style-two {
  min-width: 380px;
  flex: 0 0 380px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.luxivo-room-item.style-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Room Image */
.luxivo-room-item.style-two .room-image {
  overflow: hidden;
  height: 240px;
}

.luxivo-room-item.style-two .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.luxivo-room-item.style-two:hover .room-image img {
  transform: scale(1.07);
}

/* Room Content */
.luxivo-room-item.style-two .room-content {
  padding: 24px;
}

.price-rating-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price-rating-wrap .price {
  font-size: 22px;
  font-weight: 700;
  color: #b8963e;
}

.price-rating-wrap .price span {
  font-size: 13px;
  font-weight: 400;
  color: #888;
}

.price-rating-wrap .ratings i {
  color: #f5a623;
  font-size: 13px;
}

.luxivo-room-item.style-two .title a {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.25s;
}

.luxivo-room-item.style-two .title a:hover {
  color: #b8963e;
}

.check-list.style-one {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.check-list.style-one li {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.check-list.style-one li i {
  color: #b8963e;
  margin-right: 6px;
}

.luxivo-room-item.style-two .room-content p {
  font-size: 14px;
  color: #777;
  margin: 10px 0 16px;
}

/* Book Now Button */
.theme-btn.style-two {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #b8963e;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, gap 0.3s ease;
}

.theme-btn.style-two:hover {
  background: #9a7a2e;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .luxivo-room-item.style-two {
    min-width: 300px;
    flex: 0 0 300px;
  }
}

@media (max-width: 480px) {
  .luxivo-room-item.style-two {
    min-width: 260px;
    flex: 0 0 260px;
  }
}

 /* add new css of hotel end  */