/* Bag Manufacturing Pages - Premium Professional Corporate CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    background: white;
    margin: 30px 0;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

section h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a5298, #ffd700);
    border-radius: 2px;
}

section h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Product Cards */
.product-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin: 25px auto;
    transition: all 0.3s ease;
    position: relative;
    max-width: 1200px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #2a5298;
}

.product-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card ul {
    list-style: none;
    margin: 20px 0;
}

.product-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.product-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Key Takeaways */
.key-takeaways {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #2a5298;
    padding: 30px;
    margin: 30px auto;
    border-radius: 8px;
    max-width: 1200px;
}

.key-takeaways h3 {
    color: #1e3c72;
    margin-bottom: 20px;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 12px;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section h2::after {
    background: linear-gradient(90deg, #ffd700, #fff);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: #ffd700;
    color: #1e3c72;
    border-color: #ffd700;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.btn-secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-tertiary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-tertiary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2a5298;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    background: #2a5298;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    background: white;
}

/* WhatsApp Button Icon */
.btn-secondary::before {
    content: '📱';
    font-size: 1.2rem;
}

.btn-primary::before {
    content: '📞';
    font-size: 1.2rem;
}

.btn-tertiary::before {
    content: '📧';
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .cta-section,
    .cta-buttons {
        display: none;
    }
    
    body {
        background: white;
    }
    
    section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
.btn:focus,
.btn:focus-visible {
    outline: 3px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-section,
.zoha-section,
.laptop-bags-section,
.corporate-gifting-section,
.school-bags-section,
.delivery-bags-section,
.travel-bags-section,
.eco-friendly-bags-section,
.trust-section,
.faq-detailed-section,
.final-cta-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}