/* Biegun Studio Tutor - Single Course Page Styles */
body {
    font-family:Manrope, sans-serif!important;
}
/* Container and Layout */
.bst-course-single {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.bst-container {
    width: 100%;
    max-width: 100%;
}

.bst-course-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

/* Main Content */
.bst-course-main {
    min-width: 0; /* Prevents overflow */
}

/* Sidebar */
.bst-course-sidebar {
    position: relative;
    max-width: 100%;
}

.bst-booking-card.bst-sticky {
    position: static;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Hero Section */
.bst-course-hero {
    margin-bottom: 40px;
}

.bst-course-hero-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.bst-course-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bst-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.bst-course-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    max-height: 200px;
    z-index: 2;
}

.bst-course-badge img {
    max-width: 100%;
    height: auto;
}

/* Invoice Form Styles */
.bst-toggle-invoice-container {
    margin-bottom: 20px;
    text-align: left;
}

#bst-toggle-invoice {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-size: 0.9rem;
}

#bst-toggle-invoice:hover, 
#bst-toggle-invoice.active {
    background-color: #f8f9fa;
    border-color: #C10A0B;
    color: #C10A0B;
}

.bst-invoice-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bst-invoice-section-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bst-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.bst-form-col {
    flex: 1;
}

/* Badge specifically for single course page - override course-list styles */
.bst-course-single .bst-single-course-status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #C10A0B !important;
    color: #fff !important;
}

/* Course Title */
.bst-course-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Course Subtitle */
.bst-course-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Sections */
.bst-section {
    margin-bottom: 50px;
}

.bst-section h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.bst-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #C10A0B;
}

/* Features Grid */
.bst-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.bst-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.bst-feature-icon {
    width: 20px;
    height: 20px;
    background-color: #C10A0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.bst-feature-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Course Info Grid */
.bst-course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.bst-info-item {
    display: flex;
    flex-direction: column;
}

.bst-info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bst-info-value {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

/* CTA Button */
.bst-course-cta {
    text-align: center;
    margin-top: 20px;
}

.bst-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    background: none;
}

.bst-btn-outline {
    background-color: transparent;
    border-color: #000;
    color: #000;
}

.bst-btn-outline:hover {
    background-color: #C10A0B;
    border-color: #C10A0B;
    color: #fff;
    text-decoration: none;
}

.bst-btn-primary {
    background-color: #C10A0B;
    border-color: #C10A0B;
    color: #fff;
}

.bst-btn-primary:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    text-decoration: none;
}

.bst-btn-full {
    width: 100%;
    text-align: center;
}

.bst-btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Course Dates Table */
.bst-dates-table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.bst-dates-table-header {
    background-color: #f8f9fa;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.bst-dates-table-header .bst-date-col {
    padding: 15px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-right: 1px solid #e5e5e5;
}

.bst-dates-table-header .bst-date-col:last-child {
    border-right: none;
}

.bst-dates-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.3s ease;
}

.bst-dates-table-row:hover {
    background-color: #f8f9fa;
}

.bst-dates-table-row:last-child {
    border-bottom: none;
}

.bst-dates-table-row .bst-date-col {
    padding: 15px;
    border-right: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.bst-dates-table-row .bst-date-col:last-child {
    border-right: none;
}

.bst-date-info {
    display: flex;
    flex-direction: column;
}

.bst-date-main {
    font-weight: 600;
    color: #000;
}

.bst-date-time {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}

.bst-date-price {
    font-weight: 700;
    color: #C10A0B;
}

.bst-date-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bst-status-red {
    background-color: #C10A0B;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Learning Outcomes */
.bst-learning-grid {
    display: grid;
    gap: 12px;
}

.bst-learning-item {
    display: flex;
    align-items: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
}

.bst-learning-item:last-child {
    border-bottom: none;
}

.bst-learning-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bst-learning-text {
    color: #333;
    line-height: 1.5;
}

/* Long Description */
.bst-content {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

.bst-content p {
    margin-bottom: 20px;
}

.bst-content h3,
.bst-content h4 {
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.bst-content ul,
.bst-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

/* Curriculum Section */
.bst-curriculum-module {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bst-curriculum-content{
    margin-top:20px;
}
.bst-curriculum-module:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bst-module-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bst-module-header:hover {
    background-color: #f1f3f4;
}

.bst-module-header.active {
    background-color: #e9ecef;
}

.bst-module-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.bst-module-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bst-module-duration {
    font-size: 0.85rem;
    color: #666;
    background-color: #e5e5e5;
    padding: 4px 8px;
    border-radius: 4px;
}

.bst-module-arrow {
    color: #C10A0B;
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.bst-module-header.active .bst-module-arrow {
    transform: rotate(180deg);
}

.bst-module-description {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bst-module-description-content {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #e5e5e5;
}

.bst-module-description.expanded {
    max-height: 1000px !important;
}

/* Module number styling */
.bst-module-number {
    color: #C10A0B;
    font-weight: 700;
    margin-right: 10px;
}
/* Instructor Section */
.bst-instructor-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.bst-instructor-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.bst-instructor-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
}

.bst-instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bst-instructor-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.bst-instructor-basic-info {
    flex: 1;
    margin:auto;
}

.bst-instructor-name {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: #333;
}

.bst-instructor-title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bst-instructor-email a {
    color: #C10A0B;
    text-decoration: none;
    font-size: 0.9rem;
}

.bst-instructor-email a:hover {
    text-decoration: underline;
}

.bst-instructor-bio {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.bst-instructor-social h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #333;
}

.bst-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bst-social-link {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.bst-social-link:hover {
    background: #C10A0B;
    color: white;
    border-color: #C10A0B;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {

    .bst-course-badge {
        max-width: 100px;
        max-height: 100px;
        top: 15px;
    }

    .bst-instructor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bst-instructor-avatar {
        align-self: center;
    }
    
    .bst-social-links {
        justify-content: center;
    }
}
/* FAQ Section Styles - przypominające sekcję curriculum */
.bst-course-faq {
    margin-bottom: 50px;
}

.bst-faq-content {
    margin-top: 20px;
}

.bst-faq-module {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bst-faq-module:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bst-faq-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bst-faq-header:hover {
    background-color: #f1f3f4;
}

.bst-faq-header.active {
    background-color: #e9ecef;
}

.bst-faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.bst-faq-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bst-faq-arrow {
    color: #C10A0B;
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.bst-faq-header.active .bst-faq-arrow {
    transform: rotate(180deg);
}

.bst-faq-description {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bst-faq-description-content {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #e5e5e5;
}

.bst-faq-description.expanded {
    max-height: 1000px !important;
}

/* Sidebar Recent Courses Section */
.bst-sidebar-recent-courses {
    margin-top: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bst-sidebar-recent-courses h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    text-align: left;
}

.bst-sidebar-courses-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.bst-sidebar-course-item {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.bst-sidebar-course-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.bst-sidebar-course-info {
    flex: 1;
    min-width: 0;
    margin-right: 10px;
}

.bst-sidebar-course-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.bst-sidebar-course-cta {
    font-family: 'Manrope', sans-serif;
    display: inline-block;
    padding: 6px 12px;
    background: #C10A0B;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.bst-sidebar-course-item:hover .bst-sidebar-course-cta {
    background: #a0090a;
    box-shadow: 0 2px 6px rgba(193, 10, 11, 0.3);
    color: white;
}

.bst-sidebar-all-courses {
    text-align: right;
}

.bst-sidebar-all-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.bst-sidebar-all-link:hover {
    color: #C10A0B;
    text-decoration: none;
}

.bst-sidebar-no-courses {
    font-family: 'Manrope', sans-serif;
    color: #666;
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bst-sidebar-recent-courses {
        padding: 20px;
    }
    
    .bst-sidebar-course-item {
        padding: 12px;
    }
    
    .bst-sidebar-course-title {
        font-size: 0.9rem;
    }
    
    .bst-sidebar-course-cta {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bst-sidebar-recent-courses {
        padding: 15px;
    }
}
/* Testimonials */
.bst-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.bst-testimonial-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    transition: none;
}

.bst-testimonial-item:hover {
    box-shadow: none;
}

.bst-testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bst-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #C10A0B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.bst-testimonial-info {
    flex: 1;
}

.bst-testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.bst-testimonial-separator {
    height: 1px;
    background-color: #ddd;
    margin-bottom: 15px;
}

.bst-testimonial-content {
    color: #333;
}

.bst-testimonial-quote {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.bst-testimonial-toggle {
    background: none;
    border: none;
    color: #C10A0B;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: inherit;
}

.bst-testimonial-toggle:hover {
    color: #a0090a;
}

.bst-testimonial-toggle:focus {
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bst-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bst-testimonial-item {
        padding: 20px;
    }
    
    .bst-testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .bst-testimonial-author {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .bst-form-row {
        flex-direction: column;
        gap: 0;
    }
        
    .bst-course-badge {
        max-width: 80px;
        max-height: 80px;
        top: 10px;
    }

    .bst-testimonial-item {
        padding: 18px;
    }
    
    .bst-testimonial-header {
        gap: 12px;
    }
    
    .bst-testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Booking Card Sidebar */
.bst-booking-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.bst-booking-icon {
    width: 40px;
    height: 40px;
    background-color: #C10A0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.bst-booking-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.bst-booking-info {
    padding: 25px;
}

.bst-booking-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #666;
}

.bst-booking-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bst-booking-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bst-booking-value {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

.bst-booking-status {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    background-color: #e5e5e5;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bst-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bst-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bst-contact-icon {
    font-size: 16px;
}

.bst-contact-item a {
    color: #C10A0B;
    text-decoration: none;
    font-weight: 600;
}

.bst-contact-item a:hover {
    text-decoration: underline;
}

.bst-booking-separator {
    height: 1px;
    background-color: #333;
}

/* Price display styling */
.bst-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: left;
    margin-bottom: 8px;
}

.bst-price-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #C10A0B;
}

.bst-price-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.bst-price-vat {
    font-size: 0.8rem;
    color: #666;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Booking Form */
.bst-booking-form {
    padding: 0 25px 25px;
}

.bst-form-group {
    margin-bottom: 20px;
}

.bst-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.bst-form-group input,
.bst-form-group textarea,
.bst-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.bst-form-group input:focus,
.bst-form-group textarea:focus,
.bst-form-group select:focus {
    outline: none;
    border-color: #C10A0B;
}

.required {
    color: #C10A0B;
}

/* Custom Select */
.bst-custom-select {
    position: relative;
}

.bst-select-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.bst-select-display:hover {
    border-color: #C10A0B;
}

.bst-select-display.active {
    border-color: #C10A0B;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bst-select-display.error {
    border-color: #dc3545;
}

.bst-select-text {
    color: #333;
    font-size: 0.9rem;
}

.bst-select-text.placeholder {
    color: #999;
}

.bst-select-arrow {
    transition: transform 0.3s ease;
}

.bst-select-display.active .bst-select-arrow {
    transform: rotate(180deg);
}

.bst-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #C10A0B;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.bst-select-option {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.bst-select-option:last-child {
    border-bottom: none;
}

.bst-select-option:hover,
.bst-select-option.selected {
    background-color: #f8f9fa;
}

.bst-option-price {
    color: #666;
    font-size: 0.85rem;
    margin-left: 8px;
}

.bst-booking-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #666;
}

.bst-booking-note small {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Corporate Offer */
.bst-corporate-offer {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: left;
    margin: 0 25px 25px;
}

.bst-corporate-offer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.bst-corporate-offer p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Other Courses */
.bst-other-courses {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    margin: 0 25px 25px;
}

.bst-other-courses h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.bst-other-courses-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.bst-other-course-link {
    display: block;
    padding: 12px 15px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.bst-other-course-link:hover {
    background-color: #C10A0B;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(193, 10, 11, 0.2);
}

.bst-other-course-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.bst-other-course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.8;
}



.bst-other-course-price {
    font-weight: 600;
}

.bst-no-other-courses {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* Messages */
.bst-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.bst-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bst-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bst-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
@media (min-width: 1200px) {
    .container {
        width: 1400px;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .bst-course-layout {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bst-course-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bst-course-sidebar {
        order: -1;
        width: 100%;
        max-width: 100%;
    }
    
    .bst-booking-card.bst-sticky {
        position: relative;
        top: auto;
    }
    
    .bst-course-title {
        font-size: 2rem;
    }
    
    .bst-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bst-course-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .bst-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bst-dates-table-header,
    .bst-dates-table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .bst-dates-table-header .bst-date-col,
    .bst-dates-table-row .bst-date-col {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 10px 15px;
    }
    
    .bst-dates-table-header .bst-date-col:last-child,
    .bst-dates-table-row .bst-date-col:last-child {
        border-bottom: none;
    }
    
    .bst-messages {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .bst-course-single {
        padding: 0px;
    }
    
    .bst-course-info-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .bst-booking-header,
    .bst-booking-info,
    .bst-booking-price,
    .bst-booking-form {
        padding: 15px;
    }
    
    .bst-corporate-offer,
    .bst-other-courses {
        margin: 0 15px 20px;
        padding: 15px;
    }
    
    .bst-section {
        margin-bottom: 35px;
    }
    
    .bst-section h2 {
        font-size: 1.5rem;
    }
    
    .bst-price-amount {
        font-size: 1.5rem;
    }
}

/* Add Manrope font import at the top of the file */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Modern sidebar styling */
.bst-course-sidebar {
    width: 450px;
    max-width: 100%;
}

.bst-booking-card.bst-sticky {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Header with gradient */
.bst-booking-header {
    background: linear-gradient(135deg, #C10A0B 0%, #a0090a 100%);
    color: white;
    position: relative;
}

.bst-booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.bst-booking-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bst-booking-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* Course info styling */
.bst-booking-item {
    border-bottom: 1px solid #e5e5e5;
}

.bst-booking-item:last-child {
    border-bottom: none;
}

.bst-booking-status {
    padding: 2px 6px;
    background-color: rgba(193, 10, 11, 0.1);
    color: #C10A0B;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Price section with gradient */
.bst-booking-price {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding:20px;
}

.bst-price-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #C10A0B;
}

.bst-price-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
    font-weight: 500;
}

/* CTA Button with gradient */
.bst-btn-primary {
    background: linear-gradient(135deg, #C10A0B 0%, #a0090a 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(193, 10, 11, 0.3);
    transition: all 0.3s ease;
}

.bst-btn-primary:hover {
    background: linear-gradient(135deg, #a0090a 0%, #80070a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 10, 11, 0.4);
}

/* Booking form container */
.bst-booking-form-container {
    background: white;
    border-top: 1px solid #e5e5e5;
}

.bst-booking-form {
    padding: 24px;
}

/* Form styling */
.bst-form-group {
    margin-bottom: 20px;
}

.bst-form-group label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.bst-form-group input,
.bst-form-group textarea,
.bst-form-group select {
    font-family: 'Manrope', sans-serif;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.bst-form-group input:focus,
.bst-form-group textarea:focus,
.bst-form-group select:focus {
    border-color: #C10A0B;
    box-shadow: 0 0 0 2px rgba(193, 10, 11, 0.1);
}

/* Contact info styling */
.bst-corporate-offer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin: 24px;
    padding: 20px;
}

.bst-corporate-offer h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    text-align: center;
}

.bst-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bst-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
}

.bst-contact-icon {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.bst-contact-item a {
    color: #C10A0B;
    text-decoration: none;
    font-weight: 600;
}

.bst-contact-item a:hover {
    text-decoration: underline;
}

/* Related courses styling */
.bst-other-courses {
    padding: 24px;
}

.bst-other-courses h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
}

.bst-other-course-link {
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.bst-other-course-link:hover {
    background: #C10A0B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 10, 11, 0.3);
}

.bst-other-course-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.bst-other-course-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
}

.bst-other-course-price {
    font-weight: 600;
}

/* Apply Manrope font to all sidebar elements */
.bst-course-sidebar *,
.bst-booking-card * {
    font-family: 'Manrope', sans-serif !important;
}

/* Update course layout grid */
.bst-course-layout {
    grid-template-columns: 1fr 450px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bst-course-sidebar {
        width: 100%;
    }
    
    .bst-course-layout {
        grid-template-columns: 1fr;
    }
    
    .bst-booking-form {
        padding: 20px;
    }
    
    .bst-corporate-offer {
        margin: 20px;
        padding: 16px;
    }
    
    .bst-other-courses {
        padding: 20px;
    }
    
    .bst-price-amount {
        font-size: 1.5rem;
    }
}