.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}
.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f2f2f2;
    color: #222;
    border-radius: 10px;
    padding: 0.7em 1.2em 0.5em 1.2em;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
    min-width: 60px;
}
.timer-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111 !important;
    margin-bottom: 0.1em;
}
.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #444;
    opacity: 0.8;
    letter-spacing: 0.04em;
}

.hero-sales-date-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.hero-sales-date-main {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 900 !important;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    border: none;
    margin-right: 0.5em;
    transition: none;
}
.hero-sales-date-status {
    color: #ff4444;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-left: 0.5em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
    background: none;
    padding: 0;
}
.timer-ended {
    color: #ff4444;
    font-size: 1.1rem;
    font-weight: 700;
}
/* Course Sales Page Styles */

/* Offer Banner */
.offer-banner {
    background: #000000;
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.offer-badge {
    background: #ff4444;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-text {
    font-size: 1rem;
    font-weight: 600;
}

.spots-remaining {
    font-size: 1rem;
    font-weight: 700;
    color: #ff4444;
}

.countdown-timer {
    display: flex;
    gap: 0.75rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
}

.timer-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.timer-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Sales Hero Section */
.course-hero-sales {
    /* No background color or gradient, only shapes will show */
    box-shadow: 0 8px 32px 0 rgba(60,60,60,0.07);
    padding: 3rem 0;
    /* reduced top gap so hero sits closer to the nav */
    margin-top: 80px;
    border-bottom: 1px solid #000000;
    position: relative;
    overflow: hidden;
}

/* ensure content layers above overlays */
.hero-sales-content { position: relative; z-index: 2; }

/* Decorative SVG wave at the bottom of the hero (kept as decorative-only)
   Note: hero background image and overlay removed to show page background only */
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    pointer-events: none;
    z-index: 2;
    display: block;
    background: transparent;
}

@media (max-width: 480px) {
    .hero-wave { height: 80px; }
}

/* Make the section after the hero (lecturer-info) black to match the wave */
.lecturer-info {
    background: #000000;
    color: #ffffff;
    padding-top: 3rem; /* ensure space under the wave */
    padding-bottom: 3rem;
}

/* Ensure the lecturer block sits above any decorative hero shapes that may overflow
   and hide any decorative shape elements if they are placed inside the lecturer area. */
.lecturer-info {
    position: relative;
    z-index: 5; /* higher than hero shapes (which use z-index:0..2) */
}

.lecturer-info .hero-bg-shape,
.lecturer-info .hero-columns {
    display: none !important;
}

.lecturer-info .section-title,
.lecturer-info .lecturer-name,
.lecturer-info p,
.lecturer-info .lecturer-credentials {
    color: #ffffff;
}

.lecturer-image img {
    border: 4px solid rgba(255,255,255,0.08);
}

.hero-bg-shape {
    position: absolute;
    /* keep shapes inside the hero but above the section background layer */
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}

.hero-bg-shape.shape1 {
    /* top-left corner */
    top: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background-image: url('../images/IMG_0534.jpg');
}

.hero-bg-shape.shape2 {
    /* top-right corner */
    top: -120px;
    right: -120px;
    width: 540px;
    height: 540px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-image: url('../images/noel-1-scaled.jpg');
}

.hero-bg-shape.shape3 {
    /* bottom-right corner */
    bottom: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-image: url('../images/IMG_6375.jpg');
}

.hero-bg-shape.shape4 {
    /* bottom-left corner */
    bottom: -40px;
    left: -40px;
    width: 320px;
    height: 320px;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    background-image: url('../images/IMG_6375.jpg');
}

/* Responsive: scale down or hide shapes on smaller screens to avoid overlap */
@media (max-width: 992px) {
    .hero-bg-shape { opacity: 0.9; }
    .hero-bg-shape.shape1,
    .hero-bg-shape.shape2 { width: 300px; height: 300px; }
    .hero-bg-shape.shape3,
    .hero-bg-shape.shape4 { width: 220px; height: 220px; }
}

@media (max-width: 768px) {
    /* keep hero tidy on tablets/phones */
    .hero-bg-shape.shape1,
    .hero-bg-shape.shape2,
    .hero-bg-shape.shape3,
    .hero-bg-shape.shape4 { display: none; }

    /* on mobile reduce the top gap further to save vertical space */
    .course-hero-sales { margin-top: 40px; padding-top: 2rem; padding-bottom: 2rem; }
}


.hero-sales-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Four vertical background columns behind the hero content */
.hero-columns {
    position: absolute;
    inset: 0; /* fill the hero area */
    display: flex;
    z-index: 0; /* behind content (content z-index:2) but allows overlay above columns */
    pointer-events: none;
}

.hero-column {
    flex: 1 1 0;
    min-width: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0.95;
}

/* Use the same image for most columns, but make column-2 different */
.hero-column.column-1 { background-image: url('../images/IMG_0534.jpg'); }
.hero-column.column-2 { background-image: url('../images/noel-1-scaled.jpg'); }
.hero-column.column-3 { background-image: url('../images/IMG_0534.jpg'); }
.hero-column.column-4 { background-image: url('../images/IMG_6375.jpg'); }

/* Subtle overlay to keep text readable where needed (applies over columns) */
.hero-columns::after {
    content: '';
    position: absolute;
    inset: 0;
    /* slightly stronger dark overlay to improve contrast so white text is clearly readable */
    background: rgba(0,0,0,0.6);
    z-index: 1; /* sits above the columns but below content (content z-index:2) */
}

@media (max-width: 992px) {
    .hero-column { opacity: 0.9; }
}

@media (max-width: 768px) {
    /* hide decorative columns on smaller devices to save space */
    .hero-columns { display: none; }
}

.hero-sales-content {
    padding-right: 2rem;
    position: relative;
    /* ensure content sits above the decorative shapes */
    z-index: 2;
}

/* Ensure the right-hand sidebar (pricing card) sits above the decorative overlay
   so it remains visible even with a darker overlay in the background. */
.hero-sales-sidebar {
    position: relative;
    z-index: 2;
}

.course-badge {
    display: inline-block;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-sales-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.rating-display-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 10px;
    width: fit-content;
}

.stars-hero {
    display: flex;
    gap: 0.2rem;
}

.stars-hero i {
    color: #4caf50;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.rating-text-hero {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-sales-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.45);
}

.key-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.key-benefits span, .benefit-item { color: rgba(255,255,255,0.95); }

.rating-display-hero { background: rgba(255,255,255,0.95); color: #000; }

.social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    margin-top: 1rem;
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #000000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-content-box {
    padding-top: 0.5rem;
}

.testimonial-quote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonial-author-info .author-name {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.testimonial-author-info .author-location {
    font-size: 0.85rem;
    color: #666;
}

.btn-view-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-reviews:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.btn-view-reviews i {
    color: #ffc107;
}

/* Pricing Sidebar */
.hero-sales-sidebar {
    position: sticky;
    top: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.price-tag {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.sale-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
}

.savings {
    display: block;
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.urgency-text {
    color: #ff4444;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.detail-item i {
    color: #333;
    width: 16px;
}

.enrollment-actions {
    margin-bottom: 1.5rem;
}

.btn-enroll-now {
    width: 100%;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-enroll-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.guarantee-text, .spots-left {
    text-align: center;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.guarantee-text {
    color: #22c55e;
}

.spots-left {
    color: #ff4444;
    font-weight: 600;
}

.whats-included {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.whats-included h4 {
    margin-bottom: 1rem;
    color: #000;
}

.whats-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

/* Results & Benefits */
.results-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Center Schedule & Venue header and contents */
.course-schedule .section-title,
.course-schedule .section-subtitle {
    text-align: center;
}

.course-schedule .schedule-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-schedule .schedule-venue-grid {
    display: grid;
    grid-template-columns: 1fr 360px; /* main (tabs) + venue column */
    gap: 2rem;
    align-items: start;
}

/* Schedule tabs (Day 1 / Day 2) */
.schedule-tabs {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-button {
    appearance: none;
    border: 1px solid #e5e5e5;
    background: transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.tab-button.active {
    background: #000000;
    color: #fff !important;
    border-color: #000000;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

@media (max-width: 992px) {
    .course-schedule .schedule-venue-grid { grid-template-columns: 1fr; }
    .venue-compact { order: 2; }
    .schedule-compact, .schedule-tabs { order: 1; }
}

/* Decorative vertical label on the left: "SCHEDULE" */
.course-schedule {
    position: relative;
    overflow: visible; /* allow pseudo-element to show outside normal flow */
}

.course-schedule::before {
    /* Consolidated label for both Schedule and Venue; aligned with Aims label */
    content: 'SCHEDULE & VENUE';
    position: absolute;
    /* move further left to visually align with the AIMS label */
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    /* responsive size so text always fits inside the section */
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    /* slightly tighter spacing for longer label */
    letter-spacing: 0.25rem;
    color: rgba(0,0,0,0.12);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .course-schedule::before { font-size: 2.6rem; left: -1rem; }
}

@media (max-width: 768px) {
    /* Hide decorative label on smaller screens to avoid layout issues */
    .course-schedule::before { display: none; }
}


/* Aims & Objectives: center content and add vertical left label */
.aims-objectives {
    position: relative;
    overflow: visible;
}

.aims-objectives .section-title,
.aims-objectives .section-subtitle {
    text-align: center;
}

.aims-objectives::before {
    content: 'AIMS & OBJECTIVES';
    position: absolute;
    /* move further left so it visually aligns with the other vertical labels */
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    /* responsive size so the text always fits inside the section */
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    letter-spacing: 0.25rem;
    color: rgba(0,0,0,0.12);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .aims-objectives::before { font-size: 2.6rem; left: -1rem; }
}

@media (max-width: 768px) {
    .aims-objectives::before { display: none; }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.result-stat {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.result-description {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-carousel {
    margin-top: 2rem;
}

.testimonial-card.featured {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #000000;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-content .quote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #000;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* What You'll Learn */
.what-youll-learn {
    padding: 4rem 0;
    background: white;
}

.learn-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.skills-list {
    margin-top: 2rem;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #000000;
}

.skill-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.skill-info h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.skill-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.learn-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Enrollment Section */
.enrollment-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 4rem 0;
}

.enrollment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enrollment-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.enrollment-urgency {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.urgency-item {
    /* Match the visual style of .price-box so both sidebar boxes look identical */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    min-width: 150px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* Price box shown beside the urgency item */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Shared box appearance with .urgency-item */
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    min-width: 150px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.price-amount {
    font-weight: 900;
    color: #22c55e; /* green */
    /* Match the urgency number sizing and weight for visual parity */
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    line-height: 1;
}

.price-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .enrollment-urgency { flex-direction: column; gap: 1rem; }
    .price-box { min-width: auto; padding: 0.75rem 1rem; font-size: 1.1rem; }
}

.urgency-number {
    display: block;
    /* Match the price amount sizing and weight */
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    font-weight: 900;
    color: #ff4444; /* prominent red */
}

.urgency-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}

.enrollment-benefits h3 {
    margin-bottom: 1rem;
    color: white;
}

.enrollment-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.enrollment-benefits li {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.total-value {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid #333;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.value-text, .your-price {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.value-amount {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: #ccc;
}

.your-price {
    margin-top: 0;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    color: #22c55e;
}

/* Enrollment Form */
.enrollment-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
}

.btn-enroll-submit {
    width: 100%;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-enroll-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.form-guarantees {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.guarantee-item i {
    font-size: 1.2rem;
    color: #22c55e;
    margin-bottom: 0.25rem;
}

/* Other Courses Carousel */
.other-courses-section {
    background: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
}

.other-courses-section .section-title {
    text-align: center;
}

.other-courses-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.courses-carousel {
    overflow: hidden;
    margin-bottom: 2rem;
}

.courses-track {
    display: flex;
    gap: 2rem;
    animation: scroll 60s linear infinite;
    width: max-content;
}

.courses-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 6 - 2rem * 6));
    }
}

.course-card-carousel {
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.course-badge-carousel {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.course-badge-carousel.popular {
    background: #ff5722;
}

.course-badge-carousel.beginner {
    background: #4caf50;
}

.course-badge-carousel.advanced {
    background: #9c27b0;
}

.course-image-carousel {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.course-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card-carousel:hover .course-image-carousel img {
    transform: scale(1.1);
}

.course-content-carousel {
    padding: 1.5rem;
}

.course-content-carousel h3 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    min-height: 20px;
}

.course-rating-carousel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.course-rating-carousel .stars {
    color: #4caf50;
    font-size: 0.9rem;
}

.course-rating-carousel .rating-text {
    color: #666;
    font-weight: 600;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.course-meta span {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta i {
    color: #000;
}

.course-price-carousel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.course-price-carousel .price {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
}

.course-price-carousel .cpd {
    color: #666;
    font-size: 0.8rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.btn-carousel {
    display: block;
    width: 100%;
    background: #000;
    color: white;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-carousel:hover {
    background: #333;
}

.view-all-courses {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-block;
    background: #000;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/IMG_0534.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-urgency {
    margin-bottom: 2rem;
}

.urgency-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.btn-cta-primary {
    background: #ff4444;
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-cta-primary:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,68,68,0.4);
}

.cta-guarantee {
    color: #22c55e;
    font-weight: 600;
    margin: 0;
}

/* Lecturer Information */
.lecturer-info {
    background: #000000;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.lecturer-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.lecturer-info::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
}

.lecturer-info .section-title,
.lecturer-info .lecturer-name {
    color: white;
}

.lecturer-info .lecturer-credentials {
    color: #e0e0e0;
}

.lecturer-info .lecturer-bio p {
    color: #d0d0d0;
}

.lecturer-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.lecturer-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.lecturer-name {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lecturer-credentials {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lecturer-bio p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lecturer-achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-size: 0.9rem;
    color: #666;
}

/* Aims & Objectives */
.aims-objectives {
    background: white;
    padding: 4rem 0;
}

.objectives-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.course-aims h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.aims-list {
    margin-bottom: 2rem;
}

.aim-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.aim-number {
    background: #000000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.aim-item p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.course-content-detailed h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.content-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.content-list li:last-child {
    border-bottom: none;
}

/* Course Schedule & Reviews */
.course-schedule {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.schedule-info {
    text-align: center;
    margin-bottom: 2rem;
}

.cpd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.cpd-badge i {
    font-size: 1rem;
}

.schedule-venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-compact,
.venue-compact {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-subtitle-small {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.section-subtitle-small i {
    color: #666;
}

.venue-details-compact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.venue-address-compact {
    margin-bottom: 0.5rem;
}

.venue-address-compact p {
    margin: 0.25rem 0;
    color: #333;
    font-size: 0.95rem;
}

.venue-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.venue-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.venue-detail i {
    color: #000;
}

.venue-map-compact {
    margin-top: 1rem;
}

.venue-map-compact iframe {
    border-radius: 8px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
}

.schedule-table thead {
    background: #000000;
    color: white;
}

.schedule-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}

.schedule-table th:first-child {
    width: 120px;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
    background: #f8f9fa;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
}

.schedule-table td.time {
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.schedule-table td.activity {
    color: #333;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.review-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: #333;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.review-author {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.schedule-day {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #000000;
}

.day-title {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    margin-right: 1rem;
}

.schedule-activity {
    color: #333;
    flex: 1;
}

/* Venue Section */
.venue-section {
    background: white;
    padding: 4rem 0;
}

.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-name {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.venue-address {
    margin-bottom: 2rem;
}

.venue-address p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.venue-details {
    margin-bottom: 2rem;
}

.venue-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.venue-detail i {
    color: #22c55e;
    width: 16px;
}

.venue-directions h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.venue-directions p {
    color: #666;
    line-height: 1.6;
}

.venue-map {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-placeholder iframe {
    border-radius: 16px;
}

/* Course Gallery */
.course-gallery {
    background: #f8f9fa;
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .offer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-timer {
        justify-content: center;
    }
    
    .hero-sales-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-sales-content {
        padding-right: 0;
    }
    
    .hero-sales-title {
        font-size: 2rem;
    }
    
    .hero-sales-sidebar {
        position: static;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enrollment-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enrollment-urgency {
        justify-content: center;
    }
    
    .form-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lecturer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lecturer-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .objectives-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-sales-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .enrollment-form {
        padding: 2rem;
    }
    
    .timer-item {
        padding: 0.5rem;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
}