/* Builder/Tradesman Page Specific Styles */

/* Header Styles - Matching Homepage */
.builder-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fbf9f7;
    width: 100%;
    max-width: 100%;
}

.builder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.builder-logo {
    height: 48px;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #1e293b;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-start {
    background: #1e293b;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.builder-main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Builder Hero Section */
.builder-hero {
    background: #ffffff;
    color: #1e293b;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.builder-hero h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.builder-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.benefit-text strong {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.benefit-text span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Builder Process with Green Theme */
.builder-process {
    padding: 4rem 0;
    background: #fbf9f7;
}

.builder-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2.2rem;
    font-weight: 700;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    color: #10b981;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Builder Problems Section */
.builder-problems {
    padding: 4rem 0;
    background: #fbf9f7;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.problem-icon {
    font-size: 1.25rem;
}

.problem-header h3 {
    margin: 0;
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
}

.problem-desc {
    margin: 0 0 1rem 2rem;
    color: #6b7280;
    font-style: italic;
}

.solution-part {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-left: 2rem;
}

.solution-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solution-content h4 {
    margin: 0 0 0.25rem 0;
    color: #059669;
    font-size: 1rem;
    font-weight: 600;
}

.solution-content p {
    margin: 0;
    color: #374151;
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    margin: 0 0 1.5rem 0;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #1e40af;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    margin: 4rem 0;
    text-align: center;
}

.pricing-card {
    background: white;
    border: 2px solid #10b981;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.pricing-card h3 {
    color: #059669;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
}

.price {
    margin: 2rem 0;
}

.percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #059669;
}

.price-detail {
    display: block;
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #374151;
}

.pricing-note {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Builder CTA */
.builder-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e5f3ff 100%);
    padding: 3rem 2rem;
    margin: 2rem -1rem 0 -1rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.builder-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #059669;
}

/* Mobile Responsive for Builder Page */
@media (max-width: 768px) {
    .builder-header {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .builder-main {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .builder-hero {
        padding: 2rem 1rem;
    }
    
    .builder-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .builder-hero h2 {
        font-size: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .builder-problems {
        padding: 3rem 0;
    }
    
    .problem-desc,
    .solution-part {
        margin-left: 0;
    }
    
    .problems-list {
        padding: 0;
    }
    
    .problem-item {
        margin: 0;
        padding: 1.5rem;
    }
    
    .builder-cta {
        margin: 2rem 0 0 0;
        padding: 2rem 1rem;
    }
}
