/* Single Tour Page Styles */
.egyptwonders-single-tour {
    font-family: 'Manrope', sans-serif;
    color: #e0e0e0;
    background-color: #0b0b0b;
}

/* Hero Section */
.st-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.st-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(11, 11, 11, 1) 100%);
}

.st-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.st-breadcrumbs {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.st-breadcrumbs a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.st-breadcrumbs a:hover {
    color: #C9A227;
}

.st-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: #C9A227;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.st-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.st-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.st-meta-item svg {
    color: #C9A227;
}

/* Main Layout */
.st-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* Left Content */
.st-section {
    margin-bottom: 50px;
}

.st-section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #C9A227;
    margin-bottom: 20px;
    border-left: 3px solid #C9A227;
    padding-left: 15px;
}

.st-overview-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.st-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.st-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
}

.st-highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* Sticky Booking Card */
.st-booking-card {
    position: sticky;
    top: 100px;
    /* Adjust for header */
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.st-price-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.st-price {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #fff;
}

.st-price-label {
    font-size: 14px;
    color: #888;
}

.st-form-group {
    margin-bottom: 20px;
}

.st-label {
    display: block;
    font-size: 13px;
    color: #C9A227;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.st-input,
.st-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    appearance: none;
}

.st-input:focus,
.st-select:focus {
    outline: none;
    border-color: #C9A227;
}

.st-btn-book {
    width: 100%;
    background: #C9A227;
    color: #000;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
}

.st-btn-book:hover {
    background: #fff;
    transform: translateY(-2px);
}

.st-instant-conf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 900px) {
    .st-title {
        font-size: 2.5rem;
    }

    .st-main-container {
        grid-template-columns: 1fr;
    }

    .st-booking-card {
        margin-top: 40px;
        position: static;
    }
}