/* Common styles for route detail pages */

/* Route Header Styles */
.route-header-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 1rem 0 4rem;
    margin-top: -80px;
    padding-top: 80px;
}

.route-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.route-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.route-title .highlight {
    color: #ffcc00;
    position: relative;
    z-index: 1;
}

.route-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 204, 0, 0.3);
    z-index: -1;
}

.route-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.route-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.route-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Route Overview Styles */
.route-overview-section {
    padding: 5rem 0;
    background: white;
}

.route-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Route Steps Styles */
.route-steps-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.step-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
}

.timeline-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-content h3:hover {
    background: #e9ecef;
    border-color: #667eea;
    transform: translateX(5px);
}

.timeline-content h3::after {
    content: '▼';
    font-size: 0.8rem;
    color: #667eea;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.timeline-item.active .timeline-content h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.timeline-item.active .timeline-content h3::after {
    transform: rotate(180deg);
    color: white;
}

.timeline-duration {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline-description {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Accordion styles */
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    margin-top: 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, margin-top 0.5s ease-out;
}

.timeline-item.active .timeline-description {
    max-height: 1000px; /* Adjust as needed */
    padding: 2rem;
    margin-top: 1rem;
    transition: max-height 0.7s ease-in, padding 0.7s ease-in, margin-top 0.7s ease-in;
}

.timeline-description p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.timeline-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-description ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.task-checklist {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.task-checklist h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.task-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-item input[type="checkbox"] {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.task-item label {
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.task-item input[type="checkbox"]:checked + label {
    text-decoration: line-through;
    color: #999;
}

/* Recommended Resources Styles */
.route-resources-section {
    padding: 5rem 0;
    background: white;
}

.resources-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 0.6rem 1rem;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

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

.tab-btn.active {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.resource-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
}

.resource-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Route Stories Styles */
.route-stories-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.stories-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.stories-carousel .story-slide {
    display: none;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    float: left;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.story-avatar:hover {
    transform: scale(1.05);
}

.avatar-emoji {
    font-size: 3rem;
    line-height: 1;
}

.story-content {
    overflow: hidden;
}

.story-highlight blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.story-highlight blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-family: serif;
}

.story-highlight cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.story-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-tags span {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.story-footer {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.control-btn {
    background: none;
    border: 2px solid #3498db;
    color: #3498db;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.control-btn:hover {
    background: #3498db;
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3498db;
}

/* FAQ Section Styles */
.route-faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #3498db;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
}

.faq-answer p {
    padding: 0.8rem 0;
    color: #555;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.more-questions {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.more-questions a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.more-questions a:hover {
    text-decoration: underline;
}

/* CTA Section Styles */
.route-cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 5rem 0;
    color: white;
}

.cta-section {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 3rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #ffcc00;
    color: #2c3e50;
    border: 2px solid #ffcc00;
}

.cta-button.primary:hover {
    background: #ffb700;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-buttons .alt-button {
    color: #34495e;
    border-color: #bdc3c7;
}

.cta-buttons .alt-button:hover {
    background: #e9ecef;
    border-color: #34495e;
}

/* Related Routes Styles */
.related-routes-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.related-routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-route-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-route-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.related-route-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.related-route-link {
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.related-route-link:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* Animation Styles */
.overview-card, .timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.overview-card.is-visible, .timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delay for timeline items */
.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .route-title {
        font-size: 2.5rem;
    }
    .route-overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .timeline-marker {
        width: 60px;
        height: 60px;
    }
    .step-timeline::before {
        left: 30px;
    }
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    /* Tab navigation optimization */
    .tabs-nav {
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .route-header-section {
        margin-top: -60px; /* Mobile offset 60px body padding */
        padding-top: 60px; /* Mobile navigation bar spacing */
    }
    
    .route-title {
        font-size: 2.2rem;
    }

    .route-subtitle {
        font-size: 1rem;
    }

    .route-overview-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-marker {
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding-left: 0;
    }

    .step-timeline::before {
        display: none;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .related-route-card {
        text-align: center;
    }
    
    /* Mobile tab navigation optimization */
    .tabs-nav {
        justify-content: flex-start;
        gap: 0.3rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
        border-radius: 20px;
    }
    
    /* Mobile success story avatar styles */
    .story-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .story-avatar {
        width: 80px;
        height: 80px;
        float: none;
        display: flex;
        margin: 0 auto 1rem auto;
    }
    
    .avatar-emoji {
        font-size: 2rem;
    }
    
    .story-highlight blockquote {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .story-highlight blockquote::before {
        font-size: 2rem;
        left: -0.5rem;
        top: -0.3rem;
    }
    
    .story-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .story-tags span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .route-title {
        font-size: 2rem;
    }
    .route-header-section {
        padding: 4rem 0 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    .timeline-description {
        padding: 1.5rem;
    }
    .faq-question {
        font-size: 1.1rem;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Small screen tab navigation optimization */
    .tabs-nav {
        gap: 0.2rem;
        padding: 0 0.3rem;
    }
    
    .tab-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        border-radius: 18px;
    }
}

/* Footer Styles */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle.active {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        color: white;
        text-decoration: none;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:hover {
        color: #3498db;
        padding-left: 1rem;
        transition: all 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Book-specific styling for Amazon affiliate marketing */
.resource-book-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-height: 140px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.resource-book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: white;
    border-color: #4a90e2;
    text-decoration: none;
    color: inherit;
}

.resource-book-cover {
    flex-shrink: 0;
    width: 70px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.book-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.resource-book-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 100%;
}

.resource-book-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2c3e50;
}

.resource-book-content p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
}

.resource-link-text {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-book-item:hover .resource-link-text {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .resource-book-item {
        padding: 1.5rem;
    }
    
    .resource-book-cover {
        width: 80px;
        height: 110px;
    }
    
    .resource-book-content h4 {
        font-size: 1.1rem;
    }
    
    .resource-book-content p {
        height: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .resource-book-item {
        padding: 1.2rem;
    }
    
    .resource-book-cover {
        width: 70px;
        height: 100px;
    }
    
    .resource-book-content h4 {
        font-size: 1rem;
    }
    
    .resource-book-content p {
        font-size: 0.85rem;
    }
}

/* Platform logo styling */
.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Text-based platform logo styling - Copyright safe */
.platform-logo-text {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Generic icon styling - Copyright safe alternative */
.platform-icon-generic {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.8rem;
    color: #495057;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Category-based color coding */
.platform-logo-text.learning { background: linear-gradient(135deg, #28a745, #20c997); }
.platform-logo-text.tools { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
.platform-logo-text.community { background: linear-gradient(135deg, #fd7e14, #ffc107); }
.platform-logo-text.freelance { background: linear-gradient(135deg, #dc3545, #fd7e14); }

/* Path-Specific Download Section */
.path-download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    position: relative;
    overflow: hidden;
}

.path-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.download-card-wrapper {
    position: relative;
    z-index: 1;
}

.download-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    max-width: 900px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.download-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.download-header p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.download-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.download-benefits-grid .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-benefits-grid .benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-benefits-grid .benefit-icon {
    font-size: 1.4rem;
    color: #3498db;
}

.download-benefits-grid h4 {
    font-size: 1rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.download-benefits-grid p {
    font-size: 0.9rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 0.3rem;
}

.download-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.path-download-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.path-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1c5d8f);
}

.download-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    line-height: 1.5;
}

/* Path-specific Email Modal Styles */
#pathEmailModal .email-modal-header h3 {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

#pathEmailModal .email-submit-btn {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

#pathEmailModal .email-submit-btn:hover {
    background: linear-gradient(135deg, #D97706, #B45309);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-card {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }

    .download-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .download-header p {
        font-size: 0.9rem;
    }

    .download-benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
        margin: 1rem 0;
    }

    .download-benefits-grid .benefit-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .download-benefits-grid .benefit-icon {
        font-size: 1.3rem;
    }

    .download-benefits-grid h4 {
        font-size: 0.95rem;
    }

    .download-benefits-grid p {
        font-size: 0.85rem;
    }

    .path-download-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: none;
    }

    .download-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .path-download-section {
        padding: 2rem 0;
    }

    .download-card {
        padding: 1rem;
        margin: 0.5rem;
    }

    .download-header {
        margin-bottom: 1rem;
    }

    .download-header h2 {
        font-size: 1.2rem;
    }

    .download-icon {
        font-size: 2rem;
    }

    .download-benefits-grid {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .download-benefits-grid .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem;
    }

    .download-benefits-grid .benefit-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .path-download-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* 💰 Monetization Models Section */
.monetization-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 3rem;
}

.monetization-models h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.model-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02), rgba(44, 62, 80, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.model-card:hover::before {
    opacity: 1;
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.model-card:hover .model-icon {
    transform: scale(1.1);
}

.model-card h4, .model-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.model-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.earning-range {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .monetization-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }
    
    .monetization-models h3 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .model-card {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .model-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .model-card h4, .model-card h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .model-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .earning-range {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .monetization-models h3 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .models-grid {
        gap: 1rem;
    }
    
    .model-card {
        margin: 0 0.5rem;
        padding: 1.25rem 0.75rem;
    }
}

/* Download card internal monetization models styles - compact and collapsible */
.download-card .monetization-models {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.download-card .monetization-models h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.download-card .monetization-models h4:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #3498db;
}

.download-card .monetization-models h4::after {
    content: "Click to expand ▼";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #6c757d;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.download-card .monetization-models.collapsed h4::after {
    transform: translateY(-50%) rotate(0deg);
}

.download-card .monetization-models.expanded h4::after {
    content: "Click to collapse ▲";
    transform: translateY(-50%) rotate(0deg);
}

.download-card .monetization-models p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #6c757d;
    display: none;
}

.download-card .monetization-models.expanded p {
    display: block;
}

.download-card .models-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.download-card .monetization-models.expanded .models-grid {
    display: grid;
}

.download-card .model-card {
    background: white;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-card .model-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.download-card .model-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.download-card .model-card h5 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #2c3e50;
    font-weight: 600;
}

.download-card .model-card p {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: block !important;
    text-align: left;
}

.download-card .earning-range {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .download-card .monetization-models {
        margin: 1.5rem 0 1rem;
        padding: 1rem;
    }
    
    .download-card .monetization-models h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .download-card .models-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .download-card .model-card {
        padding: 0.8rem;
    }
    
    .download-card .model-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .download-card .model-card h4, .download-card .model-card h5 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .download-card .model-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .download-card .earning-range {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .download-card .monetization-models h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .download-card .models-grid {
        gap: 0.6rem;
    }
    
    .download-card .model-card {
        padding: 0.7rem;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.story-highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.story-highlight blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.story-highlight blockquote::before {
    content: '"';
    font-size: 2rem;
    color: #3498db;
    position: absolute;
    left: -0.5rem;
    top: -0.3rem;
    font-family: serif;
}

.story-highlight cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.story-tags span {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Alternative: compact but always visible monetization models */
.download-card .monetization-models-v2 {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.download-card .monetization-models-v2 h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
}

.download-card .monetization-models-v2 .models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.download-card .monetization-models-v2 .model-card {
    background: white;
    padding: 0.6rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.download-card .monetization-models-v2 .model-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.download-card .monetization-models-v2 .model-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.download-card .monetization-models-v2 .model-card h5 {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.download-card .monetization-models-v2 .earning-range {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    display: inline-block;
}

/* Single pricing option layout */
.download-pricing-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-option.complete {
    max-width: 500px;
    width: 100%;
}

.value-explanation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    max-width: 500px;
    width: 100%;
    margin-top: 1rem;
}

.value-explanation h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-explanation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-explanation li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

.value-explanation li strong {
    color: #2c3e50;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .pricing-option.complete {
        max-width: none;
    }
    
    .value-explanation {
        max-width: none;
        padding: 1rem;
    }
    
    .value-explanation h4 {
        font-size: 1rem;
    }
    
    .value-explanation li {
        font-size: 0.85rem;
    }
}

/* Basic pricing option styles */
.pricing-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-option.popular {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-header {
    margin-bottom: 1.5rem;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
}

.option-benefits {
    text-align: left;
    margin-bottom: 1.5rem;
}

.option-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.option-benefits .benefit-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.option-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.complete-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.complete-button:hover {
    background: linear-gradient(135deg, #2980b9, #1c5d8f);
    transform: translateY(-2px);
}

.option-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

.download-guarantee {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.download-guarantee p {
    margin: 0;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Payment options styles */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stripe-button {
    background: linear-gradient(135deg, #635bff, #4f46e5);
    color: white;
}

.stripe-button:hover {
    background: linear-gradient(135deg, #4f46e5, #3b37f0);
    transform: translateY(-2px);
}

.paypal-button {
    background: linear-gradient(135deg, #0070ba, #003087);
    color: white;
}

.paypal-button:hover {
    background: linear-gradient(135deg, #003087, #001c64);
    transform: translateY(-2px);
}

.wechat-button {
    background: linear-gradient(135deg, #07c160, #05a052);
    color: white;
}

.wechat-button:hover {
    background: linear-gradient(135deg, #05a052, #038845);
    transform: translateY(-2px);
}

.payment-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.payment-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .payment-options {
        gap: 0.8rem;
    }
}

/* New payment method styles */
.payment-method {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-method:hover {
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.15);
}

.payment-method span:first-child {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.payment-method small {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.payment-info-display {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-details h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.paypal-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.paypal-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.qr-placeholder {
    background: white;
    border: 2px dashed #007bff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.qr-placeholder p {
    margin: 0.5rem 0;
    color: #007bff;
    font-weight: 600;
}

.qr-placeholder small {
    color: #6c757d;
    font-style: italic;
}

.payment-instructions {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
}

.payment-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.after-payment {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.after-payment p {
    margin: 0.5rem 0;
    color: #155724;
}

.after-payment strong {
    color: #0d4211;
}

@media (max-width: 768px) {
    .payment-method {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .payment-method span:first-child {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    
    .payment-info-display {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .paypal-info, .payment-instructions, .after-payment {
        padding: 1rem;
    }
}

/* Free download form styles */
.free-download-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.free-download-form h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.download-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.download-button {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.download-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
    line-height: 1.4;
}

.success-notification {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-icon {
    font-size: 1.2rem;
}

.success-text {
    flex: 1;
    font-weight: 500;
}

.success-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.success-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .free-download-form {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .download-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}