/* Modern Lifestyle CSS Styles - Fixed Responsive Design */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* Header and Navigation */
.welcome-banner {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.brand-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo img {
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: #2563eb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.icon-button {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.icon-button:hover {
    background-color: #f1f5f9;
    transform: scale(1.1);
}

/* Main Content */
.main-heading {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

.product-showcase {
    gap: 2rem;
}

.lifestyle-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    max-width: 100%;
}

.lifestyle-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
    border-color: #2563eb;
}

.product-image-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lifestyle-card:hover .product-image-container {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.product-details {
    padding: 1.5rem;
}

.product-title {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-price {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.125rem;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    display: block;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Benefits Section */
.lifestyle-benefits {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 4rem;
}

.benefits-heading {
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
}

.benefits-grid {
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    background: white;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.benefit-title {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #64748b;
}

/* Lifestyle Content Section */
.lifestyle-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-heading {
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.content-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
}

.content-grid {
    gap: 2rem;
}

.content-block {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-block:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.content-block-title {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-block-text {
    color: #64748b;
    line-height: 1.7;
}

/* Product Detail Pages */
.breadcrumb-section {
    margin-bottom: 1rem;
}

.product-showcase-detail {
    gap: 2rem;
}

.product-gallery {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-information {
    padding: 1rem;
}

.product-main-title {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.product-pricing {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.package-options {
    margin-bottom: 2rem;
}

.option-label {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.option-buttons {
    gap: 0.75rem;
    display: flex;
    flex-wrap: wrap;
}

.package-choice {
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 16px;
    background: white;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.package-choice:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
}

.package-choice.active-choice {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.purchase-button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    font-size: 1.125rem;
    display: block;
    text-align: center;
}

.purchase-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.product-details-section {
    margin-top: 2rem;
}

.details-heading {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-heading {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.feature-item {
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.lifestyle-benefits {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.benefits-title {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.benefits-grid {
    gap: 1rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    color: #64748b;
}

.additional-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 4rem;
}

.content-section-title {
    color: #1e293b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.content-columns {
    gap: 2rem;
}

.content-column {
    padding: 1rem;
}

.column-title {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.column-text {
    color: #64748b;
    line-height: 1.7;
}

.tech-specs {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.specs-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.specs-grid {
    gap: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    color: #64748b;
    font-size: 0.875rem;
}

.spec-value {
    color: #1e293b;
    font-weight: 500;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.footer-content {
    gap: 2rem;
}

.company-info, .footer-links, .social-section {
    padding: 1rem;
}

.footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.social-icons {
    gap: 1rem;
}

.social-link {
    color: #cbd5e1;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.social-link:hover {
    color: #60a5fa;
    background-color: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.newsletter-signup {
    margin-top: 1.5rem;
}

.newsletter-title {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    background: white;
    color: #1e293b;
}

.newsletter-button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

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

.copyright-text {
    color: #cbd5e1;
}

/* Responsive Design - Mobile First */
@media (max-width: 640px) {
    .main-heading {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .product-main-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .content-section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .package-choice {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 2px;
    }
    
    .purchase-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .lifestyle-card {
        margin-bottom: 1rem;
    }
    
    .product-image-container {
        padding: 1rem;
    }
    
    .product-details {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .package-choice {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-showcase-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-gallery {
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px 8px 0 0;
    }
    
    .newsletter-button {
        border-radius: 0 0 8px 8px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-custom-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

