* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    left: 20px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.phone {
    border-radius: 28%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 167px;
    left: 20px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1000;
    transition: transform 0.3s ease;
    background: white;
}

.phone img {
    width: 100%;
}

.whatsapp img {
    width: 100%;
}

/* ===== TOPBAR DESIGN ===== */
.topbar {
    background: linear-gradient(135deg, #000000, #000000);
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(8px);
    padding: 8px 0px;
    position: sticky;
    top: 0px;
    z-index: 999;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.contact-item {
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    opacity: .9;
}

.contact-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* RIGHT SIDE */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.follow-text {
    font-weight: 500;
    opacity: .9;
}

/* SOCIAL ICONS */
.social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: .3s;
}

.social:hover {
    background: #fff;
    color: #f16135;
    transform: translateY(-3px) scale(1.05);
}

/* ===== NAVBAR ===== */
.main-nav {
    position: sticky;
    top: 53px;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    width: 100%;
    max-width: 140px;
}

/* RIGHT MENU */
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-right a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: .3s;
}

.nav-right a:hover {
    color: #f16135;
}

/* CALL BUTTON */
.call-btn {
    background: #f16135;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}

.call-btn:hover {
    background: #0f4e6c;
    transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* hero-banner */
/* ===== BREADCRUMB HERO ===== */
.breadcrum-banner {
    background: url('../images/destination/jakhoo.jfif') center/cover no-repeat;
    position: relative;
    height: 700px;
    background-attachment: fixed;
}

/* OVERLAY */
.breadcrum-overlay {
    background: linear-gradient(rgb(0 0 0 / 38%), rgb(0 0 0 / 22%));
    height: 700px;
    align-content: center;
}

/* ===========================
   HERO / BREADCRUMB CONTENT
===========================*/

.col-content {
    display: flex;
    align-items: center;
}

/* .breadcrum-content {
    max-width: 520px;
} */

/* TITLE */
.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* HERO SUBTITLE WITH ICONS */
.hero-subtitle {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    color: #555;
    padding: 10px;
    background: #ffffffd9;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-subtitle span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-weight: 500;
}

/* icon style */
.hero-subtitle i {
    color: #f16135;
    font-size: 14px;
}

/* MAIN BUTTON STYLE */
.btn-more {
    display: inline-block;
    background: #f16135;
    color: #fff !important;
    ;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: .4px;
    transition: all .3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.btn-more:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    border: 2pxx solid #fff;
}

/* CLICK EFFECT */
.btn-more:active {
    transform: scale(.97);
}

/* OPTIONAL SHINE ANIMATION */
.btn-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: .6s;
}

.btn-more:hover::before {
    left: 120%;
}

/* =========================
   PREMIUM BREADCRUMB FORM
=========================*/

.form-attention-strip {
    background: #f16135;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    letter-spacing: .4px;
    animation: softBlink 1.4s infinite;
}

/* PROFESSIONAL SOFT BLINK (not harsh) */
@keyframes softBlink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.breadcrum-form {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* inputs */
.breadcrum-form .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
    padding: 10px 14px;
    transition: .25s;
    box-shadow: none;
}

/* focus effect */
.breadcrum-form .form-control:focus {
    border-color: #f16135;
    box-shadow: 0 0 0 3px rgba(20, 105, 147, 0.08);
}

/* select arrow spacing fix */
.breadcrum-form select.form-control {
    cursor: pointer;
}

/* spacing between fields */
.breadcrum-form .form-group {
    margin-bottom: 14px;
}

/* button */
.breadcrum-form button {
    width: 100%;
    background: #f16135;
    border: none;
    height: 48px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .4px;
    transition: .3s;
}

/* button hover */
.breadcrum-form button:hover {
    background: #0f4e6c;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}


/* ===packages section=== */
.package-content {
    padding: 18px;
    /* More breathing room */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

/* ===========================
   SECTION TITLE DESIGN
===========================*/

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* center alignment trick */
#packages .section-title {
    left: 50%;
    transform: translateX(-50%);
}

/* premium underline */
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f16135;
    border-radius: 3px;
}

/* small top accent line (professional touch) */
.section-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #f16135;
    opacity: .35;
    border-radius: 3px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    /* More rounded for modern look */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    /* Soft layered shadow */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    border: 1px solid #f2f4f7;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #f16135;
}

/* IMAGE */
.package-img {
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.package-card:hover img {
    transform: scale(1.1);
}

/* PRICE BADGE */
.price {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #0c437c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    backdrop-filter: blur(4px);
    /* Slight glass effect if overlay is added */
    box-shadow: 0 8px 15px rgba(12, 67, 124, 0.25);
    z-index: 2;
}

/* CONTENT */
.duration-sp {
    background: #f1f8e9;
    color: #f16135;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #c5e1a5;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icons .icon {
    width: 57px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 27%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-icons .icon img {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    /* Keeps original colored icon by default */
}

.contact-icons .call-icon:hover {
    background: #0c437c;
    border-color: #0c437c;
    transform: translateY(-4px);
}

.contact-icons .whatsapp-icon:hover {
    background: #f16135;
    border-color: #f16135;
    transform: translateY(-4px);
}

.contact-icons .icon:hover img {
    filter: brightness(0) invert(1);
}

/* MOBILE RESPONSIVE */
@media(max-width:480px) {
    .contact-icons .icon {
        width: 42px;
        height: 42px;
    }

    .contact-icons .icon img {
        width: 20px;
        height: 20px;
    }
}


/* INFO */
.package-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 17px;
    align-items: baseline;
}

.fa-location-dot {
    color: #f16135;
}

/* RATING */
.rating {
    color: #ffa534;
    font-size: 14px;
    margin-bottom: 14px;
}

.rating span {
    color: #777;
    margin-left: 6px;
}

/* BUTTON */
.package-btn {
    display: inline-block;
    background: #f16135;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(97, 138, 52, 0.25);
}

.package-btn:hover {
    background: #0c437c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(12, 67, 124, 0.4);
    color: #fff;
}

/* RIBBON STRIP */
.package-card {
    position: relative;
    /* needed for ribbon */
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #f16135;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 45px;
    transform: rotate(45deg);
    z-index: 5;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.inclusions {
    margin: 8px auto;
}

.inclusions h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions ul li {
    position: relative;
    padding: 5px 10px 5px 28px;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: 0.3s ease;
}

.inclusions ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 8px;
    color: #f16135;
    font-size: 12px;
}

.inclusions ul li:hover {
    background: #f1f8e9;
    transform: translateX(5px);
    color: #f16135;
}

/* ===========================
   WHY CHOOSE US SECTION
 ===========================*/

#why-choose {
    padding: 80px 0;
    background: #f9f9f9;
}

.choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.choose-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #f16135;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: #f1f8e9;
    color: #f16135;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: 0.3s;
}

.choose-card:hover .choose-icon {
    background: #f16135;
    color: #fff;
}

.choose-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.choose-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   TESTIMONIAL SECTION
===========================*/

#reviews {
    padding: 70px 0;
    background: #f7fbfd;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: .3s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

/* STARS */
.review-stars {
    color: #ffa534;
    margin-bottom: 12px;
}

/* TEXT */
.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* USER */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.review-user span {
    font-size: 13px;
    color: #777;
}

/* ===footer=== */
.footer {
    background: #000000;
    color: #ccc;
    padding: 60px 0;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
}

.footer h5::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 20px;
    height: 2px;
    top: 27px;
    left: 0;
    background-color: #f16135;
}

.footer h5::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 50px;
    height: 2px;
    top: 27px;
    left: 25px;
    background-color: #f16135;
}

.footer p {
    font-size: 13px;
    line-height: 1.7;
    color: #f9f9f9 !important;
}

.footer a {
    color: white;
    text-decoration: none;
}

.contact-p i {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social i {
    font-size: 18px;
}

.card-icon {
    width: 100%;
    max-width: 83px;
    height: 56px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 10%;
}

.approval-logo {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 262px;
    margin: 10px 15px 0 0;
}

.footer .img-logo {
    width: 100%;
    max-width: 100px;
    background: white;
}

/* copyright */
.copyright {
    background: #000000;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 1px;
}

.d1 {
    align-content: center;
}

.gt-logo {
    width: 100%;
    max-width: 150px;
}

.footer h6 {
    color: white;
    font-weight: 600;
}

/* ===thanks page==== */
.thanks {
    display: flex;
    justify-content: center;
    padding: 5rem 0px;
}

.thank-you-container {
    background: linear-gradient(135deg, #f16135 0%, #f16135 100%);
    color: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease 0.3s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: white;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.subtitle-p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.info-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 8px 0;
    color: #475569;
}

.info-box i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.2rem;
}

.btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom {
    background: white;
    color: black;
}

.btn-primary-custom:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    color: #146a95;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: black;
    background: white;
}

.btn-outline-custom:hover {
    background: white;
    color: #146a95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.social-links-2 {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.social-links-2 p {
    color: #fff;
    margin-bottom: 15px;
}

.social-links-2 a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin: 0 8px;
    color: var(--dark);
    transition: all 0.3s;
    text-decoration: none;
}

.social-links-2 i {
    color: black;
}

.social-links-2 a:hover {
    background: #f1f5f9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* ===popup form=== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: popupScale .4s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    right: 9px;
    top: 2px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.form-attention-strip {
    background: #0c437c;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.popup-box .form-group {
    margin-bottom: 12px;
}

.popup-box .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin: 18px 0px;
}

.popup-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f16135;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.popup-btn:hover {
    background: #08345c;
}

/* testimonial section */
.section-testimonial{
    background :linear-gradient(#0000005c, #0000006e), url(../images/destination/himachal-banner.jpg) center / cover no-repeat;
    padding: 5rem 0px;
}

.header {
    text-align: center;
    margin-bottom: 64px;
}

.heading {
    font-size: clamp(30px, 3vw, 35px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #f0ede8;
    margin-bottom: 18px;
}

.heading em {
    font-style: italic;
    color: var(-light);
}

.subtext {
    font-size: 15px;
    font-weight: 300;
    color: #8a8799;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider wrapper */
.slider-wrapper {
    position: relative;
}

.slider-track-outer {
    overflow: hidden;
    border-radius: 2px;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Cards */
.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    flex: 0 0 calc((100% - 25px) / 2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 900px) {
    .card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 580px) {
    .card {
        flex: 0 0 100%;
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-inner-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(107, 92, 231, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Stars */
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
}

.star {
    width: 14px;
    height: 14px;
}

.fa-star{
    color: #f16135;
}

/* Quote text */
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 32px;
    position: relative;
}

/* Author */
.author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid (rgba(255, 255, 255, 0.07));
    flex-shrink: 0;
    background: #2a3973;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
}


.author-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-role {
    font-size: 12px;
    font-weight: 300;
    color: #8a8799;
    letter-spacing: 0.02em;
}

/* Controls */
.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: (rgba(255, 255, 255, 0.07));
    border: 1px solid #8a8799;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f16135;
    border-color: #f16135;
    width: 24px;
    border-radius: 3px;
}

.arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2a3973;
    color: #f0ede8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    outline: none;
    border: none;
}

.arrow-btn:hover {
    border: none;
    background: #f16135;
    color: #fff;
    transform: scale(1.05);
}

.arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Stats bar */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: (rgba(255, 255, 255, 0.07));
    border: 1px solid (rgba(255, 255, 255, 0.07));
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 56px;
}

.stat {
    background: #13131a;
    padding: 28px 24px;
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #c9a84c;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 300;
    color: #8a8799;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 28px 24px;
    }

    .controls {
        flex-direction: column;
        gap: 24px;
    }

    .quote-text {
        font-size: 17px;
    }
}

/* General Responsiveness Fixes */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    .topbar-left,
    .topbar-right {
        gap: 10px;
    }

    .main-nav {
        position: sticky;
        top: 73px;
    }

    .contact-item {
        font-size: 13px;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .col-content {
        justify-content: center;
        margin-bottom: 30px;
    }

    .breadcrum-overlay {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 26px;
    }

    .package-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        text-align: center;
    }

    .footer .justify-content-start {
        justify-content: center !important;
    }

    .contact-p i {
        margin-right: 5px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle span {
        padding: 5px 10px;
        font-size: 13px;
    }

    .price {
        font-size: 14px;
        padding: 6px 15px;
    }

    .package-content h3 {
        font-size: 18px;
    }

    .breadcrum-form {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .inclusions ul {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .package-img img {
        height: 200px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px) {

    .topbar-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .topbar-left {
        justify-content: center;
    }

    .topbar-right {
        justify-content: center;
    }
}

/* nav-bar */
@media(max-width:992px) {

    .menu-toggle {
        display: block;
    }

    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 18px;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-right.active {
        display: flex;
    }

    .nav-wrapper {
        padding: 0px 10px;
        ;
    }
}

/* hero-banner */
@media(max-width:768px) {
    .breadcrum-banner {
        height: auto;
    }

    .breadcrum-overlay {
        padding: 60px 15px;
        height: auto;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* thanks page */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn-custom {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==popup form=== */
@media(max-width:480px) {
    .popup-box {
        padding: 18px;
        border-radius: 10px;
    }
}