/**
 * Seller Resources - Clean and Simple Design
 * Colors: #07396a (Navy Blue) and #d99513 (Gold)
 */

/* Hero Section */
.seller-hero {
    background: linear-gradient(135deg, #07396a 0%, #0a4a7a 50%, #d99513 100%);
    color: white;
    padding: 80px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.seller-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seller-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.seller-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.seller-hero .hero-buttons {
    margin-top: 2rem;
}

.seller-hero .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seller-hero .btn-light {
    background: white;
    color: #07396a;
    border: 2px solid white;
}

.seller-hero .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.seller-hero .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.seller-hero .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.seller-hero .hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.seller-hero .hero-image img:hover {
    transform: scale(1.02);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.intro-section h2 {
    color: #07396a;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-section .intro-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-section .intro-image img {
    box-shadow: 0 10px 30px rgba(7, 57, 106, 0.15);
    transition: transform 0.3s ease;
}

.intro-section .intro-image img:hover {
    transform: translateY(-5px);
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
    background: white;
}

.guides-section .section-header {
    margin-bottom: 60px;
}

.guides-section .section-header h2 {
    color: #07396a;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guides-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Guide Cards */
.guide-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(7, 57, 106, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(7, 57, 106, 0.15);
}

.guide-card.featured {
    border: 2px solid #d99513;
    box-shadow: 0 8px 30px rgba(217, 149, 19, 0.15);
}

.guide-card.featured:hover {
    box-shadow: 0 20px 60px rgba(217, 149, 19, 0.25);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d99513, #e6a01a);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(217, 149, 19, 0.3);
}

/* Guide Images */
.guide-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.pdf-preview {
    background: linear-gradient(135deg, #dc3545, #e85a67);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.pdf-preview i {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.pdf-preview span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Guide Content */
.guide-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #07396a, #0a4a7a);
    color: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(7, 57, 106, 0.2);
}

.guide-icon i {
    font-size: 1.5rem;
}

.guide-content h3 {
    color: #07396a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.guide-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.guide-meta span {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.guide-meta .download-count i,
.guide-meta .file-type i {
    font-size: 0.8rem;
}

/* Guide Actions */
.guide-actions {
    margin-top: auto;
}

.guide-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.guide-actions .btn-primary {
    background: linear-gradient(135deg, #07396a, #0a4a7a);
    border: none;
    color: white;
}

.guide-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0a4a7a, #07396a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 57, 106, 0.3);
}

.guide-actions .btn-outline-secondary {
    border: 2px solid #dee2e6;
    color: #6c757d;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #07396a 0%, #0a4a7a 50%, #d99513 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .cta-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-section .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .cta-buttons {
    margin-top: 2rem;
}

.cta-section .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .btn-light {
    background: white;
    color: #07396a;
    border: 2px solid white;
}

.cta-section .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.cta-section .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.cta-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.cta-section .cta-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fc;
    padding: 15px 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item a {
    color: #07396a;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #d99513;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #07396a;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999;
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    background: #f8f9fc;
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
}

.modal-header .modal-title {
    color: #07396a;
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seller-hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .seller-hero h1 {
        font-size: 2.2rem;
    }
    
    .seller-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .seller-hero .hero-description {
        font-size: 1rem;
    }
    
    .seller-hero .btn {
        display: block;
        margin-bottom: 1rem;
    }
    
    .intro-section,
    .guides-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .guides-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .guide-card {
        margin-bottom: 2rem;
    }
    
    .guide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .btn {
        display: block;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .seller-hero h1 {
        font-size: 1.8rem;
    }
    
    .guides-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .guide-content {
        padding: 20px;
    }
    
    .guide-content h3 {
        font-size: 1.2rem;
    }
}