/* Modern Homepage Styles - Photography Course Booking Platform */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide:not(.active) {
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero:active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-tagline {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Journey Section */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

[data-theme="dark"] .journey-section {
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .journey-section {
        background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .section-title {
        color: var(--text-primary);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
}

[data-theme="dark"] .section-subtitle {
    color: var(--text-secondary);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .section-subtitle {
        color: var(--text-secondary);
    }
}

.section-stats {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary, #666);
    margin-top: -2rem;
    margin-bottom: 2rem;
}

/* Level-Based Box Structure */
.journey-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.journey-level-box {
    --tile-image: none;
    --tile-overlay: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    background: var(--tile-overlay);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.journey-level-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--tile-image);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.journey-level-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--tile-overlay);
    z-index: 1;
}

.journey-level-box > * {
    position: relative;
    z-index: 2;
}

.journey-level-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Level 1 - Green */
.level-box-1 {
    --tile-overlay: linear-gradient(135deg, rgba(76, 175, 80, 0.6) 0%, rgba(102, 187, 106, 0.6) 100%);
    color: white;
}

/* Level 2 - Orange */
.level-box-2 {
    --tile-overlay: linear-gradient(135deg, rgba(255, 152, 0, 0.6) 0%, rgba(255, 183, 77, 0.6) 100%);
    color: white;
}

/* Level 3 - Purple */
.level-box-3 {
    --tile-overlay: linear-gradient(135deg, rgba(156, 39, 176, 0.6) 0%, rgba(186, 104, 200, 0.6) 100%);
    color: white;
}

/* Editing - Blue */
.level-box-editing {
    --tile-overlay: linear-gradient(135deg, rgba(33, 150, 243, 0.6) 0%, rgba(100, 181, 246, 0.6) 100%);
    color: white;
}

/* Residentials - Teal */
.level-box-residentials {
    --tile-overlay: linear-gradient(135deg, rgba(0, 150, 136, 0.6) 0%, rgba(77, 182, 172, 0.6) 100%);
    color: white;
}

/* Bespoke - Deep Purple */
.level-box-bespoke {
    --tile-overlay: linear-gradient(135deg, rgba(103, 58, 183, 0.6) 0%, rgba(149, 117, 205, 0.6) 100%);
    color: white;
}

.level-box-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: -0.5rem 0 0 -0.5rem;
    padding: 0.5rem 0 0 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.level-box-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.level-box-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.level-title-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.level-title-link:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.level-box-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: inherit;
}

.level-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.level-expand-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

.level-box-courses-wrap {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.level-box-courses-wrap.collapsed {
    max-height: 0;
    margin-top: 0;
}

.level-box-courses-wrap:not(.collapsed) {
    max-height: 2000px;
    margin-top: 0.5rem;
}

.level-box-courses {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.level-box-empty {
    color: inherit;
    opacity: 0.8;
    font-style: italic;
    margin-top: 1rem;
}

.level-box-course-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.level-box-course-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.level-box-course-link .course-title {
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
}

.level-box-course-link .course-price {
    font-weight: 700;
    font-size: 1rem;
    margin-left: 1rem;
    white-space: nowrap;
}

/* Dark mode adjustments */
[data-theme="dark"] .journey-level-box {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .journey-level-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments for level boxes */
@media (max-width: 768px) {
    .journey-levels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .journey-level-box {
        padding: 1.5rem;
    }
    
    .level-box-title {
        font-size: 1.5rem;
    }
}

.journey-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 900px;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.journey-step[data-level="beginner"] {
    border-left: 5px solid #4caf50;
}

.journey-step[data-level="intermediate"] {
    border-left: 5px solid #ff9800;
}

.journey-step[data-level="advanced"] {
    border-left: 5px solid #9c27b0;
}

.journey-step[data-level="professional"] {
    border-left: 5px solid #2196f3;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
}

.journey-step-final .journey-content h3,
.journey-step-final .journey-content p {
    color: white;
}

.journey-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #0066cc;
}

.journey-step-final .journey-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.journey-content {
    flex: 1;
}

.journey-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.journey-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.journey-step-final .journey-description {
    color: rgba(255, 255, 255, 0.9);
}

.journey-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.course-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.course-pill:hover {
    background: #0066cc;
    color: white;
}

.journey-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.journey-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.journey-step-final .journey-link {
    color: white;
}

/* Duolingo/Simply Piano Style Branching Path CSS */
.journey-path-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.journey-layer {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.journey-layer-branches {
    margin-top: 3rem;
}

.journey-branches {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    flex-wrap: wrap;
}

.journey-branch {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Electrical Diagram Style Connectors */
.journey-connector-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 2rem 0;
    z-index: 1;
    overflow: visible;
}

.journey-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.connector-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    fill: none;
}

.connector-line.branch-line {
    transition: stroke-width 0.3s ease, opacity 0.3s ease;
}

.journey-branch:hover .connector-line.branch-line[data-branch] {
    stroke-width: 4;
    opacity: 1;
}

.journey-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.journey-node:hover {
    transform: scale(1.05);
}

.journey-node-start {
    max-width: 400px;
}

.journey-node-branch {
    max-width: 260px;
}

.node-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 4px solid #e0e0e0;
}

[data-theme="dark"] .node-image {
    border-color: var(--border-color);
}

.journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-node.active .node-image,
.journey-node:hover .node-image {
    border-color: #0066cc;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    transform: scale(1.05);
}

.journey-node[data-category="wildlife"]:hover .node-image {
    border-color: #4caf50;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.journey-node[data-category="sport"]:hover .node-image {
    border-color: #ff9800;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.journey-node[data-category="portrait"]:hover .node-image {
    border-color: #9c27b0;
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3);
}

.journey-node[data-category="landscape"]:hover .node-image {
    border-color: #2196f3;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.node-content {
    width: 100%;
}

.node-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.node-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
}

.node-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.node-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.node-courses {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.node-course-link {
    display: block;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.node-course-link:hover {
    background: #e0e0e0;
    border-color: #0066cc;
    transform: translateX(4px);
}

/* Featured Courses */
.featured-courses {
    padding: 5rem 0;
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.course-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.course-content h3 a:hover {
    color: #0066cc;
}

.course-short {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.btn-course {
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-course:hover {
    background: #0052a3;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1a1a1a;
}

.btn-cta {
    padding: 1rem 2rem;
    background: white;
    color: #2196f3;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Testimonials Section - Conveyor Belt */
.testimonials-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

[data-theme="dark"] .testimonials-section {
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.testimonials-conveyor-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-conveyor {
    display: flex;
    gap: 1.5rem;
    animation: conveyor-move 30s linear infinite;
    will-change: transform;
}

.testimonials-conveyor:hover {
    animation-play-state: paused;
}

.testimonial-item {
    flex: 0 0 auto;
    min-width: 350px;
    max-width: 400px;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 0.75rem;
}

.testimonial-name-below {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    padding-left: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: -5px;
    color: var(--primary-color, #0066cc);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: 1.1rem;
    color: var(--border-color);
    transition: color 0.2s ease;
}

.star.filled {
    color: #FFD700;
}

.testimonial-meta-info {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-venue,
.testimonial-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}


@keyframes conveyor-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}



/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .testimonial-item {
        min-width: 280px;
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }
    
    .testimonial-name-below {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }
    
    .quote-icon {
        width: 24px;
        height: 24px;
        top: -3px;
        left: -3px;
    }
    
    .stars .star {
        font-size: 0.95rem;
    }
    
    .node-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .journey-branches {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .journey-branch {
        min-width: 100%;
        max-width: 100%;
    }
    
    .branch-connector {
        display: none;
    }
    
    .journey-node-start {
        max-width: 100%;
    }
    
    .journey-node-branch {
        max-width: 100%;
    }
    
    
    .journey-step {
        flex-direction: column;
        text-align: center;
    }
    
    .journey-connector {
        transform: rotate(90deg);
        width: 60px;
        height: 3px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}
