/* Product Template Styles */

/* Smaller navbar for product pages */
.navbar {
    height: 60px !important; /* 15% smaller than 70px */
}

.nav-container {
    height: 60px !important;
}

.nav-link {
    height: 60px !important;
    font-size: 14px !important; /* 15% smaller than 16px */
}

.brand-text {
    font-size: 19px !important; /* Updated to match homepage */
}

.logo {
    height: 45px !important; /* Updated to match homepage */
}

/* Remove body padding for product pages */
body {
    padding-top: 0 !important;
}

/* Product Hero Section */
.product-hero {
    height: calc(100vh - 60px);
    max-height: 700px;
    background: white;
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-top: 80px;
    overflow: hidden;
}

.product-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-hero-content {
    max-width: 500px;
}

.product-category {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 28px;
}

.product-cta-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    text-decoration: none;
}

.product-cta-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.product-cta-btn.secondary {
    background-color: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    margin-left: 16px;
}

.product-cta-btn.secondary:hover {
    background-color: #ff6b35;
    color: white;
}

.product-cta-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.product-hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Product Sections */
.product-section {
    padding: 80px 0;
    background-color: white;
}

.section-light {
    background-color: white;
}

.section-dark {
    background-color: white;
    color: #1a1a1a;
}

.section-cta {
    background: white;
    color: #1a1a1a;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-cta .section-title {
    color: white;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: #888;
}

.section-cta .section-description {
    color: #ccc;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Handle 2-step processes */
.process-steps:has(.process-step:nth-child(2):last-child) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
}

.process-steps:has(.process-step:nth-child(2):last-child) .process-step {
    max-width: none;
}

.process-step {
    text-align: center;
    flex: 1;
    padding: 30px 20px;
    border: none;
    background: none;
    box-shadow: none;
}

/* Removed hover effects for process steps */

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-column .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.content-column .section-description {
    text-align: left;
    margin: 0 0 30px 0;
    max-width: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

.section-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.schedule-call-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.schedule-call-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tablet/Medium Screen Fixes */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-hero {
        margin-top: 70px !important;
        height: calc(100vh - 70px) !important;
        max-height: 650px !important;
        padding: 30px 0 !important;
    }
    
    .product-hero-container {
        padding: 0 30px !important;
        gap: 60px;
    }
    
    .product-hero-title {
        font-size: 42px !important;
        line-height: 1.1 !important;
    }
    
    .product-hero-description {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }
    
    .navbar {
        height: 65px !important;
    }
    
    .nav-container {
        height: 65px !important;
    }
    
    .nav-link {
        height: 65px !important;
        font-size: 15px !important;
    }
    
    .brand-text {
        font-size: 18px !important;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Mobile navbar adjustments */
    .navbar {
        height: 50px !important;
    }
    
    .nav-container {
        height: 50px !important;
        padding: 0 15px !important;
    }
    
    .nav-link {
        height: 50px !important;
        font-size: 12px !important;
    }
    
    .brand-text {
        font-size: 14px !important;
    }
    
    .logo {
        height: 30px !important;
    }
    
    /* Mobile hero section fixes */
    .product-hero {
        margin-top: 50px !important;
        height: calc(100vh - 50px) !important;
        max-height: 600px !important;
        padding: 20px 0 !important;
    }
    
    .product-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px !important;
    }
    
    .product-hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .product-hero-description {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    
    .product-category {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .product-section {
        padding: 40px 0;
    }
    
    .product-container {
        padding: 0 20px;
    }
    
    .product-section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-column {
        text-align: center;
    }
    
    .section-logo {
        margin: 0 auto;
        display: block;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-cta-btn.secondary {
        margin-left: 0;
        margin-top: 16px;
    }
}
