* {
    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: #f09103;
    transform: translateY(-3px) scale(1.05);
}

/* ===== NAVBAR ===== */
.main-nav {
    position: sticky;
    top: 53px;
    z-index: 999;
    background: #f3f3f3;
    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: #f09103;
}

/* CALL BUTTON */
.call-btn {
    background: #f09103;
    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;
}

/* ===== MOBILE NAV RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-right {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 15px 20px;
        gap: 12px;
        z-index: 999;
    }

    .nav-right.active {
        display: flex;
    }

    .nav-wrapper {
        position: relative;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .topbar-left {
        justify-content: center;
    }

    .topbar-right {
        justify-content: center;
    }
}

/* hero-banner */
/* ===== BREADCRUMB HERO ===== */
.breadcrum-banner {
    background: url('../images/destination/himachal-banner.jpg') 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: #f09103;
    font-size: 14px;
}

/* MAIN BUTTON STYLE */
.btn-more {
    display: inline-block;
    background: #f09103;
    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: #f09103;
    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: #f09103;
    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: #f09103;
    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: #f09103;
    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: #f09103;
    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: #f09103;
}

/* 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: #1a5f7a;
    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: #f09103;
    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: 40px;
    height: 40px;
    transition: all 0.3s ease;
    /* Keeps original colored icon by default */
}

/* 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: #f09103;
}

/* RATING */
.rating {
    color: #ffa534;
    font-size: 14px;
    margin-bottom: 14px;
}

.rating span {
    color: #777;
    margin-left: 6px;
}

/* BUTTON */
.package-btn {
    display: inline-block;
    background: #f09103;
    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: #1a5f7a;
    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: #f09103;
    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;
}

.pkg-badge {
    position: absolute;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    top: 15px;
    left: 15px;
    background-color: #1a5f7a;
    color: white;
    animation: badge-pulse 2s infinite ease-in-out;
    position: absolute;
    padding: 4px 13px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 56, 56, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 56, 56, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 56, 56, 0.3);
    }
}

.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: #f09103;
    font-size: 12px;
}

.inclusions ul li:hover {
    background: #f1f8e9;
    transform: translateX(5px);
    color: #f09103;
}

/* ===========================
   WHY CHOOSE US SECTION (Modern)
 ===========================*/
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-heading span {
    color: #f09103;
    position: relative;
    display: inline-block;
}

.why-choose-heading span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(241, 97, 53, 0.2);
    bottom: 5px;
    left: 0;
    z-index: 0;
}

.why-choose-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-choose-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #f09103;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(241, 97, 53, 0.3);
}

.why-choose-btn:hover {
    background: #d85226;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(241, 97, 53, 0.4);
}

.modern-choose-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.modern-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f09103 0%, #ff8c69 100%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
    border-radius: 20px;
}

.modern-choose-card:hover {
    transform: translateY(-10px);
}

.modern-choose-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.modern-choose-card:hover h4,
.modern-choose-card:hover p,
.modern-choose-card:hover .icon-wrapper i {
    color: #fff;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(241, 97, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.modern-choose-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.icon-wrapper i {
    font-size: 28px;
    color: #f09103;
    transition: all 0.4s ease;
}

.modern-choose-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.modern-choose-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
}

@media (min-width: 576px) {
    .card-mt {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .why-choose-heading {
        text-align: center;
    }

    .why-choose-text {
        text-align: center;
    }

    .col-lg-5 {
        text-align: center;
    }

    .why-choose-btn {
        margin: 0 auto;
        display: flex;
        width: max-content;
    }
}

/* ===========================
   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: #f09103;
}

.footer h5::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 50px;
    height: 2px;
    top: 27px;
    left: 25px;
    background-color: #f09103;
}

.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, #f09103 0%, #f09103 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: #1a5f7a;
    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: #f09103;
    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;
}

/* --- Testimonial Slider Styles --- */
.slider-wrapper {
    position: relative;
    padding: 20px 0;
}

.slider-track-outer {
    overflow: hidden;
    border-radius: 16px;
    padding-bottom: 20px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid transparent;
    flex: 0 0 calc((100% - 60px) / 3);
    /* Default 3 columns */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid #f09103;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(241, 97, 53, 0.05) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.testimonial-card .quote-icon {
    font-size: 50px;
    color: rgba(241, 97, 53, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1;
}

.testimonial-card .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    z-index: 1;
}

.author-details .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a3973, #f09103);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(241, 97, 53, 0.3);
}

.author-details .author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-details .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.author-details .stars {
    display: flex;
    gap: 3px;
    color: #f09103;
    font-size: 13px;
}

/* Controls */
.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex: 1;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #f09103;
    width: 24px;
    border-radius: 4px;
}

.arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #1d2b5b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.arrow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f09103, #d94b22);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.arrow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(241, 97, 53, 0.3);
    color: #fff;
    border-color: transparent;
}

.arrow-btn:hover::before {
    opacity: 1;
}

.arrow-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.arrow-btn#prevBtn:hover svg {
    transform: translateX(-3px);
}

.arrow-btn#nextBtn:hover svg {
    transform: translateX(3px);
}

/* ===========================
   ABOUT SECTION (Redesigned)
===========================*/
.modern-about-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(241, 97, 53, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Label */
.about-label-wrap {
    text-align: center;
    margin-bottom: 48px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 97, 53, 0.09);
    color: #f09103;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(241, 97, 53, 0.2);
}

/* --- Image Block --- */
.about-img-block {
    position: relative;
    padding: 20px 20px 20px 0;
}

.about-img-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(241, 97, 53, 0.12) 0%, rgba(12, 67, 124, 0.08) 100%);
    border-radius: 24px;
    z-index: 0;
}

.about-img-main-wrap {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-block:hover .about-img-main {
    transform: scale(1.04);
}

/* Floating pills */
.about-stat-pill {
    position: absolute;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}

.about-stat-pill--top {
    top: 30px;
    right: -10px;
    animation-delay: 0s;
}

.about-stat-pill--bottom {
    bottom: 30px;
    left: -10px;
    animation-delay: 1.5s;
}

.about-stat-pill i {
    font-size: 22px;
    color: #f09103;
    flex-shrink: 0;
}

.about-stat-pill div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-stat-pill strong {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-stat-pill span {
    font-size: 12px;
    color: #888;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Heading --- */
.about-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.25;
}

.about-heading span {
    color: #f09103;
    position: relative;
}

.about-heading span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background: rgba(241, 97, 53, 0.18);
    z-index: -1;
    border-radius: 4px;
}

/* --- Description --- */
.about-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* --- Feature Points --- */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: #fff7f4;
    border-color: rgba(241, 97, 53, 0.25);
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(241, 97, 53, 0.08);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(241, 97, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-feature-icon i {
    font-size: 18px;
    color: #f09103;
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    background: #f09103;
}

.about-feature-item:hover .about-feature-icon i {
    color: #fff;
}

.about-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-feature-text strong {
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.about-feature-text span {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* --- Stats Row --- */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #1a5f7a, #1565a8);
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 28px;
}

.about-stat-box {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-box strong {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.about-stat-box span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* --- CTA Button --- */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #f09103;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(241, 97, 53, 0.3);
}

.about-cta-btn:hover {
    background: #d94b22;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(241, 97, 53, 0.4);
}

.about-cta-btn i {
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(5px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .modern-about-section {
        padding: 60px 0;
    }

    .about-label-wrap {
        margin-bottom: 32px;
    }

    .about-img-block {
        padding: 15px 15px 15px 0;
        margin-bottom: 10px;
    }

    .about-img-main {
        height: 340px;
    }

    .about-stat-pill--top {
        right: 0px;
    }

    .about-stat-pill--bottom {
        left: 0px;
    }

    .about-heading {
        text-align: center;
    }

    .about-desc {
        text-align: center;
    }

    .about-cta-btn {
        margin: 0 auto;
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .modern-about-section {
        padding: 50px 0;
    }

    .about-img-main {
        height: 260px;
    }

    .about-stat-pill {
        padding: 10px 14px;
        gap: 8px;
    }

    .about-stat-pill strong {
        font-size: 14px;
    }

    .about-stat-pill--top {
        top: 10px;
        right: -5px;
    }

    .about-stat-pill--bottom {
        bottom: 10px;
        left: -5px;
    }

    .about-stats-row {
        padding: 18px 16px;
    }

    .about-stat-box strong {
        font-size: 22px;
    }

    .about-stat-box span {
        font-size: 11px;
    }

    .breadcrum-overlay {
        height: auto;
        padding: 5rem 0px;
    }
    .breadcrum-banner {
    height: auto;
    }
}

@media (max-width: 480px) {

    .about-stat-pill--top,
    .about-stat-pill--bottom {
        position: static;
        width: fit-content;
        margin: 8px auto;
        display: flex;
        animation: none;
    }

    .about-img-block {
        padding: 10px 0;
    }

    .about-img-accent {
        display: none;
    }
}