/* General Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Package Page Main Container */
.package-wrapper {
    min-height: 100vh;
    padding: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-container {
    max-width: 1000px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Hero Section */
.package-hero {
    width: 100vw;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.package-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 40px 0 30px 0;
}

.package-logo {
    width: 90px;
    margin-bottom: 18px;
}

.package-title {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.package-tagline {
    font-size: 1.25rem;
    margin-bottom: 22px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.package-enquire-btn {
    background: #ff9019;
    color: #fff !important;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255,144,25,0.10);
    text-decoration: none;
    display: inline-block;
}

.package-enquire-btn.btn-sm-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0;
    background: #ff9019;
    color: #fff !important;
    font-family: 'Baloo 2', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(255,144,25,0.10);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
    margin: 18px auto 0 auto;
    text-align: center;
    outline: none;
    text-decoration: none;
}

.package-enquire-btn:hover {
    background: #ff8000;
    transform: translateY(-2px);
}

.package-enquire-btn.btn-sm-1:hover,
.package-enquire-btn.btn-sm-1:focus {
    background: #e67c00;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(255,144,25,0.18);
    text-decoration: none;
}

/* Section Styles */
.package-section {
    padding: 60px 0;
    background: #fff;
}

.gray-bg {
    background: #f8f9fa;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

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

/* Overview Flex */
.overview-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.overview-main {
    flex: 2;
    min-width: 260px;
}

.highlights-box {
    flex: 1;
    min-width: 240px;
    background: #fff9f2;
    border-left: 4px solid #ff9019;
    padding: 25px 25px 25px 30px;
    border-radius: 0 8px 8px 0;
    margin-top: 0;
}

.highlights-box h3 {
    color: #ff9019;
    font-size: 1.25rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.highlights-list li:before {
    content: '✓';
    color: #ff9019;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    background: #eee;
}

/* Timeline Itinerary */
.itinerary-timeline-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 0 auto;
    max-width: 700px;
}

.itinerary-day-label {
    background: #ff9019;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1.1rem;
    margin-right: 24px;
    margin-top: 8px;
    min-width: 90px;
    text-align: center;
}

.itinerary-timeline {
    flex: 1;
    position: relative;
    padding-left: 32px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ff9019;
    border-radius: 2px;
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    position: relative;
}

.timeline-time {
    font-weight: 700;
    color: #ff9019;
    min-width: 80px;
    text-align: right;
    margin-right: 18px;
    font-size: 1.05rem;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #ff9019;
    border-radius: 50%;
    position: relative;
    left: -12px;
    top: 2px;
    z-index: 2;
    margin-right: 18px;
}

.timeline-desc {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Includes/Excludes Grid */
.includes-grid,
.excludes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.include-item,
.exclude-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px 18px 16px 38px;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.include-item:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #ff9019;
    font-weight: bold;
}

.exclude-item:before {
    content: "×";
    position: absolute;
    left: 15px;
    color: #ff4444;
    font-weight: bold;
}

/* Package Description */
.package-description {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Day Toggle Navigation */
.itinerary-nav {
    display: flex;
    gap: 10px;
    padding: 20px;
}

.day-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.day-btn.active {
    background: #ff9019;
    color: white;
}

/* Package Actions */
.package-actions {
    padding: 20px;
    text-align: center;
}

.btn-enquire {
    background: #ff9019;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enquire:hover {
    background: #e67e00;
}

/* Similar Packages Section */
.similar-packages-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.similar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    width: 340px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.similar-card:hover {
    box-shadow: 0 6px 24px rgba(255,144,25,0.13);
}
.similar-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.similar-content {
    padding: 24px 22px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.similar-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
.similar-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}
.similar-btn {
    background: #ff9019;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
}
.similar-btn:hover {
    background: #ff8000;
}

/* CTA Section Alt */
.cta-section-alt {
    background: #fcf8f2;
    padding: 60px 0 70px 0;
}
.cta-section-alt .cta-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 22px;
}
.cta-section-alt .cta-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section-alt .package-enquire-btn {
    background: #ff9f3c;
    font-size: 1.1rem;
    padding: 16px 38px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(255,144,25,0.10);
}
.cta-section-alt .package-enquire-btn:hover {
    background: #ff9019;
}

/* Itinerary Tabs */
.itinerary-tabs {
    display: flex;
    gap: 18px;
    margin-bottom: 8px;
    margin-top: 0;
}
.itinerary-tab {
    background: #eee;
    color: #222;
    border: none;
    border-radius: 28px;
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-bottom: 0;
    outline: none;
    box-shadow: none;
}
.itinerary-tab.active {
    background: linear-gradient(90deg, #ff9019 80%, #ffb067 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,144,25,0.10);
}

.itinerary-content {
    margin-top: 0;
}

.itinerary-table {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-top: 12px;
    margin-bottom: 24px;
}
.itinerary-table-header {
    background: #f8f9fa;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 28px 20px 22px 20px;
    border-bottom: 1px solid #f2f2f2;
}
.itinerary-table-row {
    padding: 22px 20px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 1.13rem;
    color: #222;
    font-family: inherit;
    font-weight: 500;
}
.itinerary-table-row:last-child {
    border-bottom: none;
}

/* Center logo and right-align nav menu in header */
.header-denmark .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.header-denmark .navbar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    padding: 0;
}

.header-denmark .navbar-brand {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.header-denmark .navbar-brand img {
    height: 80px;
    width: auto;
    display: block;
}

.header-denmark .navbar-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
    margin-bottom: 0;
    list-style: none;
}

.header-denmark .nav-item {
    margin: 0;
}

.header-denmark .nav-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: #23292d !important;
    letter-spacing: 1px;
    padding: 0;
    background: none;
    border: none;
    transition: color 0.2s;
}

.header-denmark .nav-link:hover,
.header-denmark .nav-link:focus {
    color: #ff9019 !important;
    text-decoration: none;
}

.header-denmark .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-top: 12px;
    z-index: 100;
}

.header-denmark .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.header-denmark .dropdown-menu li {
    padding: 0;
}

.header-denmark .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #23292d;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.header-denmark .dropdown-menu a:hover {
    background: #ff9019;
    color: #fff;
}

/* Hide menu-btn for desktop */
.header-denmark .menu-btn {
    display: none;
}

/* Responsive: stack logo and menu on mobile */
@media (max-width: 991px) {
    .header-denmark .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-denmark .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-denmark .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-left: 0;
    }
    .header-denmark .nav-item {
        width: 100%;
        margin-bottom: 12px;
    }
    .header-denmark .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    .header-denmark .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 991px) {
    .overview-flex {
        flex-direction: column;
        gap: 24px;
    }
    .highlights-box {
        border-radius: 8px;
    }
    .itinerary-timeline-box {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .itinerary-day-label {
        margin: 0 0 18px 0;
        min-width: unset;
    }
    .itinerary-timeline {
        padding-left: 24px;
    }
}

@media (max-width: 768px) {
    .package-images {
        grid-template-columns: 1fr;
    }
    
    .itinerary-nav {
        flex-wrap: wrap;
    }
    
    .includes-grid,
    .excludes-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    .package-title {
        font-size: 1.3rem;
    }
    .section-heading,
    .cta-title {
        font-size: 1.2rem;
    }
    .gallery-grid img {
        height: 120px;
    }
    .itinerary-timeline {
        padding-left: 14px;
    }
    .timeline-time {
        min-width: 60px;
        font-size: 0.98rem;
    }
    .itinerary-tab {
        padding: 12px 18px;
        font-size: 1rem;
    }
    .itinerary-table-header, .itinerary-table-row {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1100px) {
    .similar-packages-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .similar-card {
        width: 95%;
        max-width: 400px;
    }
}

/* Print Styles */
@media print {
    .btn-enquire {
        display: none;
    }
    
    .photos-section {
        grid-template-columns: 1fr;
    }
}

.exclusive-readmore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0;
    background: #ff9019;
    color: #fff !important;
    font-family: 'Baloo 2', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(255,144,25,0.10);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
    margin: 18px auto 0 auto;
    text-align: center;
    outline: none;
    text-decoration: none;
}

.exclusive-readmore-btn:hover,
.exclusive-readmore-btn:focus {
    background: #e67c00;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(255,144,25,0.18);
    text-decoration: none;
}