/*------------------------------------------------------------------
    Product Pages Enhancements
    Universal styles for all product/service pages
-------------------------------------------------------------------*/

/* ============================================
   PRODUCT PAGE HERO SECTIONS
============================================ */
.product-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/header2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   PRODUCT FEATURES GRID
============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 55px;
    color: #068BEA;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #686b75;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 16px;
    position: relative;
    padding-left: 50px;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 24px;
    color: #25D366;
}

/* ============================================
   STATISTICS CARDS
============================================ */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

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

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 15px 0;
}

.stat-card .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PRICING CARDS
============================================ */
.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #068BEA 0%, #0066CC 100%);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card .plan-name {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #068BEA 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.pricing-card .plan-price {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #686b75;
}

.pricing-card .plan-features li:last-child {
    border-bottom: none;
}

/* ============================================
   CALL-TO-ACTION SECTIONS
============================================ */
.cta-section {
    background: linear-gradient(135deg, #068BEA 0%, #0066CC 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   TESTIMONIAL CARDS
============================================ */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.testimonial-card .quote-icon {
    font-size: 40px;
    color: #068BEA;
    opacity: 0.3;
}

.testimonial-card .testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: #1a202c;
    margin: 20px 0;
}

.testimonial-card .author {
    font-weight: 600;
    color: #068BEA;
}

.testimonial-card .position {
    font-size: 14px;
    color: #686b75;
}

/* ============================================
   PROCESS STEPS
============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

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

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #068BEA 0%, #0066CC 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #686b75;
}

/* ============================================
   ICON BADGES
============================================ */
.icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 139, 234, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #068BEA;
}

.icon-badge i {
    font-size: 18px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
============================================ */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
