#page-wrapper,
#wrapper {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.top-navigation {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}


/* Hero Section */
/* Hero Section */
.hero-detail-section {
    position: relative;
    padding: 0;
    background-color: #fff;
}

.hero-detail-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 600px;
    background: url('/static/img/product/aichat_sec1_bg.png') no-repeat center center;
    background-size: cover;
    align-items: stretch;
    overflow: hidden;
}

.hero-image-wrapper {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
}

/* Remove the gold square decoration */
.hero-image-wrapper::before {
    display: none;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.hero-info-wrapper {
    flex: 1;
    padding: 80px 100px;
    /* Increased padding for full width */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.hero-tags {
    font-size: 13px;
    color: #999;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-price {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
}

.hero-price span {
    font-size: 14px;
    margin-left: 5px;
    font-weight: 400;
    color: #999;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-gold {
    background-color: #D4AF37;
    /* Match classic gold */
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #C5A065;
    transform: translateY(-2px);
}

.btn-black {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}


/* Section Headers */
.detail-section-header {
    margin-bottom: 50px;
    position: relative;
    padding-left: 20px;
}

.detail-section-title {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    letter-spacing: 2px;
}


/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    max-width: 95%;
    /* Wide */
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    /* Seamless */
}

.highlight-item {
    position: relative;
    height: 400px;
    overflow: hidden;

}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.highlight-item:hover img {
    transform: scale(1.1);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover .highlight-overlay {
    opacity: 1;
}


/* Itinerary Section */
.itinerary-section {
    padding: 80px 0;
    max-width: 95%;
    margin: 0 auto;
}

.itinerary-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    overflow-x: auto;
}

.day-tab {
    padding: 15px 30px;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.day-tab.active {
    color: #C8AA6E;
    border-bottom-color: #C8AA6E;
}

.day-tab:hover {
    color: #666;
}

/* Timeline */
.timeline-container {
    padding-left: 20px;
    border-left: 1px solid #eee;
    margin-left: 20px;
}

.day-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.day-content.active {
    display: block;
}

.day-header {
    margin-bottom: 30px;
}

.day-number {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.day-title {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    /* Align with border */
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    /* Default dot */
    border-radius: 50%;
}

.timeline-item.highlight-dot::before {
    background-color: #C8AA6E;
    /* Highlights get gold dot */
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-size: 14px;
}

.timeline-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.day-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
    max-width: 1000px;
}

.day-images img {
    width: 100%;
    border-radius: 4px;
    height: 180px;
    object-fit: cover;
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    max-width: 95%;
    margin: 0 auto;
    background-color: #fcfcfc;
}

.cost-image-wrapper {
    width: 100%;
    background: transparent;
    padding: 20px;
    padding-left: 20px;
    /* Align with header */
}

.cost-image-wrapper img {
    max-width: 350px;
    /* Reduce size further */
    width: 100%;
    display: block;
    margin: 0;
    /* Left align */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-detail-container {
        flex-direction: column;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .day-images {
        grid-template-columns: 1fr;
    }
}