/* Packaging Page Specific Styles */

/* Packaging Hero */
.packaging-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.packaging-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.packaging-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.packaging-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.packaging-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.packaging-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Packaging Introduction */
.packaging-intro {
    padding: 100px 0;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3498db;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.intro-features {
    list-style: none;
    padding: 0;
}

.intro-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #555;
}

.intro-features li i {
    color: #3498db;
    margin-right: 15px;
    font-size: 1.2rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Packaging Options */
.packaging-options {
    padding: 100px 0;
    background: white;
}

.packaging-options .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 80px;
    position: relative;
}

.packaging-type {
    margin-bottom: 100px;
}

.type-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.type-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

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

.package-card.premium {
    border-color: #e8f4fd;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.package-card.premium:hover {
    border-color: #3498db;
}

.package-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-card h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 25px 20px 10px;
}

.package-card p {
    color: #666;
    margin: 0 20px 20px;
    font-size: 1rem;
}

.package-card ul {
    list-style: none;
    padding: 0 20px 25px;
}

.package-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Custom Branding Section */
.custom-branding {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.custom-branding .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 80px;
}

.branding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.branding-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.branding-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
}

.branding-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.branding-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.branding-features .feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.branding-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.branding-features .feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.branding-features .feature h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.branding-features .feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.branding-showcase img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Customization Details Section */
.customization-details {
    padding: 100px 0;
    background: white;
}

.customization-details .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 80px;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.custom-option {
    text-align: center;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.custom-option:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.1);
}

.custom-option i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 25px;
    display: block;
}

.custom-option h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 25px;
}

.custom-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.custom-option ul li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
}

.custom-option ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Section */
.packaging-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.packaging-process .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 80px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #e8f4fd;
    border-radius: 50%;
    top: -10px;
    left: -10px;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* MOQ Section */
.moq-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 0;
    color: white;
}

.moq-content {
    text-align: center;
}

.moq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.moq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.moq-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.moq-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.moq-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.moq-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.moq-card p:last-child {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-grid,
    .branding-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .packaging-hero .hero-title {
        font-size: 2rem;
    }
    
    .packaging-intro,
    .packaging-options,
    .custom-branding,
    .packaging-process,
    .customization-details {
        padding: 60px 0;
    }
    
    .package-grid,
    .customization-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .branding-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}