/* ===========================
   Inner Pages Common Styles
   =========================== */

/* Page Hero - Reusable */
.page-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero.hero-packages {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&h=500&fit=crop');
}

.page-hero.hero-services {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&h=500&fit=crop');
}

.page-hero.hero-destinations {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&h=500&fit=crop');
}

.page-hero.hero-contact {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=500&fit=crop');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 77, 153, 0.85), rgba(0, 102, 204, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.page-breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.page-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
}

.page-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero-content p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Sections */
.page-section {
    padding: 70px 0;
}

.page-section.bg-white {
    background: var(--white);
}

.page-section.bg-grey {
    background: var(--grey-bg);
}

.page-section.bg-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

/* ===========================
   Tour Packages Page
   =========================== */

/* Package Filter */
.pkg-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pkg-filter-btn {
    padding: 10px 22px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pkg-filter-btn:hover,
.pkg-filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pkg-filter-btn i {
    font-size: 13px;
}

/* Package Cards Grid */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pkg-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pkg-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pkg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pkg-card:hover .pkg-card-image img {
    transform: scale(1.08);
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pkg-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.pkg-card-body {
    padding: 20px;
}

.pkg-card-body h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pkg-card-body h3 i {
    color: var(--primary-blue);
    margin-right: 6px;
    font-size: 16px;
}

.pkg-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.pkg-meta span i {
    color: var(--primary-blue);
    margin-right: 4px;
}

.pkg-rating {
    font-size: 13px;
    color: #f5a623;
    margin-bottom: 12px;
}

.pkg-rating i {
    margin-right: 3px;
}

.pkg-inclusions {
    margin-bottom: 15px;
}

.pkg-incl-item {
    font-size: 13px;
    color: var(--text-light);
    padding: 3px 0;
}

.pkg-incl-item i {
    color: #25d366;
    margin-right: 6px;
    font-size: 12px;
}

.pkg-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.pkg-price .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    display: block;
}

.pkg-price .new-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
}

.pkg-price .per-person {
    font-size: 12px;
    color: var(--text-light);
}

.pkg-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.pkg-enquiry-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* ===========================
   Services Page
   =========================== */

.svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.svc-intro-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.svc-intro-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
}

.svc-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Service Detail Cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.svc-detail-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.svc-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.svc-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon-box i {
    font-size: 24px;
    color: var(--white);
}

.svc-detail-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.svc-detail-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.svc-detail-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.svc-detail-content ul li {
    font-size: 13px;
    color: var(--text-light);
    padding: 3px 0;
}

.svc-detail-content ul li i {
    color: var(--primary-blue);
    margin-right: 6px;
    font-size: 11px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
}

.process-step h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===========================
   Destinations Page
   =========================== */

.dest-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 25px;
}

.dest-hero-stat {
    text-align: center;
}

.dest-hero-stat .stat-num {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.dest-hero-stat .stat-lbl {
    font-size: 13px;
    opacity: 0.85;
}

/* Destination Region Cards */
.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.region-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.region-card:hover img {
    transform: scale(1.1);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.region-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.region-overlay p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.region-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    font-size: 12px;
}

/* Destination List */
.dest-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-list-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.dest-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.dest-list-img {
    height: 160px;
    overflow: hidden;
}

.dest-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-list-card:hover .dest-list-img img {
    transform: scale(1.08);
}

.dest-list-info {
    padding: 15px;
}

.dest-list-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.dest-list-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.dest-list-info .dest-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.dest-list-info .dest-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

/* ===========================
   Contact Page
   =========================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-card {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info-card i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: block;
}

.contact-info-card h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-form-wrap h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-form-wrap .form-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--grey-bg);
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* Contact Map */
.contact-map {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Contact Bar */
.quick-contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.qc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.qc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.qc-card.qc-phone {
    background: var(--primary-blue);
    color: var(--white);
}

.qc-card.qc-whatsapp {
    background: #25d366;
    color: var(--white);
}

.qc-card.qc-email {
    background: #ea4335;
    color: var(--white);
}

.qc-card i {
    font-size: 28px;
}

.qc-card-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.qc-card-info span {
    font-size: 13px;
    opacity: 0.9;
}

/* Page CTA */
.page-cta-section {
    text-align: center;
}

.page-cta-section h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.page-cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.page-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.page-cta-btn.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.page-cta-btn.btn-white:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.page-cta-btn.btn-wa {
    background: #25d366;
    color: var(--white);
}

.page-cta-btn.btn-wa:hover {
    background: #20bd5b;
    transform: translateY(-2px);
}

/* Active nav link */
.main-nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc-intro-grid {
        grid-template-columns: 1fr;
    }

    .svc-intro-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 240px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-section {
        padding: 50px 0;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .region-grid {
        grid-template-columns: 1fr;
    }

    .region-card {
        height: 250px;
    }

    .dest-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-bar {
        grid-template-columns: 1fr;
    }

    .dest-hero-stats {
        gap: 20px;
    }

    .dest-hero-stat .stat-num {
        font-size: 22px;
    }

    .pkg-filter-bar {
        gap: 8px;
    }

    .pkg-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .svc-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-cta-section h2 {
        font-size: 24px;
    }

    .page-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .page-hero {
        height: 200px;
    }

    .page-hero-content h1 {
        font-size: 22px;
    }

    .page-section {
        padding: 35px 0;
    }

    .dest-list-grid {
        grid-template-columns: 1fr;
    }

    .dest-hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}





/* ============================================
   HIMACHAL TOUR PAGE - himachal.css
   Add this file inside: theme-styles/
   ============================================ */

/* ---- Hero ---- */
.page-hero.hero-himachal {
    height: 420px;
    background-image: url('../site-media/images/grand_himachal.jpg');
    background-position: center 60%;
}

/* ---- Intro Section ---- */
.hm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hm-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0 16px;
}

.hm-intro-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hm-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.hm-stat {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    border-left: 3px solid var(--primary-blue);
}

.hm-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.hm-stat span {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hm-intro-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hm-intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hm-intro-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

.hm-intro-badge i { font-size: 20px; color: #FFD700; }

.hm-intro-badge strong { font-size: 18px; font-weight: 700; }

/* ---- Package Cards ---- */
.hm-pkg-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 340px 1fr;
    transition: all 0.3s;
}

.hm-pkg-card:hover {
    box-shadow: 0 14px 40px rgba(0,102,204,0.14);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.hm-pkg-img {
    position: relative;
    overflow: hidden;
}

.hm-pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hm-pkg-card:hover .hm-pkg-img img { transform: scale(1.06); }

.hm-pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.hm-pkg-badge.badge-honeymoon { background: #e84393; }
.hm-pkg-badge.badge-premium   { background: #8e44ad; }
.hm-pkg-badge.badge-car       { background: #27ae60; }
.hm-pkg-badge.badge-spiritual  { background: #e67e22; }

/* Package body */
.hm-pkg-body {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hm-pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.hm-pkg-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hm-pkg-header h3 i { color: var(--primary-blue); font-size: 18px; }

.hm-pkg-route {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.hm-pkg-route i { color: var(--primary-blue); }

/* Price box */
.hm-pkg-price-box {
    text-align: right;
    flex-shrink: 0;
}

.hm-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.hm-per {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0 6px;
}

.hm-nights {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Package details row */
.hm-pkg-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

/* Inclusions */
.hm-pkg-inclusions {
    flex: 1;
}

.hm-pkg-inclusions h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hm-pkg-inclusions h4 i { color: var(--primary-blue); }
.hm-pkg-inclusions h4 small { font-weight: 400; color: var(--text-light); font-size: 11px; }

.hm-pkg-inclusions ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}

.hm-pkg-inclusions ul li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.4;
}

.hm-pkg-inclusions ul li i {
    color: #27ae60;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA side */
.hm-pkg-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.hm-pkg-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #f39c12;
    font-weight: 600;
    white-space: nowrap;
}

.hm-pkg-rating span { color: var(--text-light); font-weight: 400; font-size: 12px; }

.hm-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-blue);
    color: #fff;
    padding: 11px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.hm-enquiry-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,102,204,0.35);
}

.hm-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 9px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.hm-call-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* ---- CTA Section (reuses page styles) ---- */
.page-cta-section {
    text-align: center;
    padding: 60px 20px;
}

.page-cta-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.page-cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.page-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.page-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.page-cta-btn.btn-white {
    background: #fff;
    color: var(--primary-blue);
}

.page-cta-btn.btn-white:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

.page-cta-btn.btn-wa {
    background: #25D366;
    color: #fff;
}

.page-cta-btn.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hm-pkg-card {
        grid-template-columns: 280px 1fr;
    }

    .hm-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hm-intro-image img { height: 300px; }

    .hm-intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero.hero-himachal { height: 320px; }

    .hm-pkg-card {
        grid-template-columns: 1fr;
    }

    .hm-pkg-img {
        height: 220px;
    }

    .hm-pkg-body { padding: 18px; }

    .hm-pkg-header {
        flex-direction: column;
        gap: 12px;
    }

    .hm-pkg-header h3 { font-size: 17px; }

    .hm-pkg-price-box { text-align: left; }

    .hm-pkg-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hm-pkg-inclusions ul {
        grid-template-columns: 1fr;
    }

    .hm-pkg-cta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .hm-intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta-buttons { flex-direction: column; align-items: center; }
    .page-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
    .hm-intro-stats { grid-template-columns: repeat(2, 1fr); }
    .hm-price { font-size: 22px; }
}

/* ---- Trending Destinations ---- */
.trending-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.trending-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    /* hide scrollbar but keep scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trending-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.trending-grid {
    display: flex;
    gap: 20px;
    width: max-content;
}

.trending-card {
    position: relative;
    width: 300px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trending-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.trending-card:hover img {
    transform: scale(1.07);
}

.trending-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);
    color: #fff;
}

.trending-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trending-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* ---- FAQ Section ---- */
.faq-section {
    background: #f5f5f5;
    padding: 60px 20px;
}

.faq-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.faq-list {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #0066cc;
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #0066cc;
}

.faq-item.open .faq-question {
    color: #0066cc;
}

.faq-answer {
    display: none;
    padding: 0 10px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-item.open .faq-answer {
    display: block;
}




/* HERO */
.hero-goa {
    height: 400px;
    background: url('../site-media/images/goa.jpg') center/cover;
}

/* INTRO */
.goa-intro {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.goa-intro h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* CARDS */
.goa-card {
    display: grid;
    grid-template-columns: 250px 1fr 200px;
    gap: 20px;
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.goa-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.goa-content h3 {
    margin-bottom: 10px;
}

.goa-content ul {
    padding-left: 18px;
}

.goa-price {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
}

.goa-price span {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.goa-price a {
    display: inline-block;
    padding: 8px 15px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 40px;
    background: #0066cc;
    color: white;
}

.cta a {
    background: white;
    color: #0066cc;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .goa-card {
        grid-template-columns: 1fr;
    }
}