/* NetCrafts Website Styles - Pixel Perfect Replica of Coho.ai Design */

:root {
    --primary-color: #33D0AE;
    --primary-hover: #00C49A;
    --secondary-color: #152C57;
    --accent-color: #F92A82;
    --text-dark: #3D3D3D;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --background-dark: #0B1830;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.announcement-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.btn-close-announcement {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.navbar-brand .logo i {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 10px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.experience-link {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #E0F2FE 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title .text-primary {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-process {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
}

.process-step i {
    color: var(--primary-color);
    margin: 0 15px;
    font-size: 18px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-cta .btn {
    margin: 10px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(51, 208, 174, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.badge-content i {
    margin-right: 8px;
    font-size: 18px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Companies Section */
.companies-section {
    padding: 60px 0;
    background: var(--background-light);
}

.companies-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.companies-logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-scroll {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.logo-item {
    display: inline-block;
    margin: 0 40px;
    font-size: 2.5rem;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-logo {
    margin-bottom: 30px;
}

.testimonial-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-indicators button {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.section-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.problem-solution-section .section-title {
    color: var(--white);
}

.problem-solution-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.solution-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-card .card-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.old-way .card-label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

.new-way .card-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.solution-card .card-body {
    padding: 30px;
    color: var(--text-dark);
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.problem-list i {
    color: var(--error-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.solution-list i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background-light);
}

.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.features-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stat-item {
    margin-bottom: 30px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.footer-brand .logo i {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(51, 208, 174, 0.25);
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(51, 208, 174, 0.25);
}

/* Pricing Styles */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(51, 208, 174, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.plan-period {
    color: var(--text-light);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.plan-features i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-process {
        flex-direction: column;
        gap: 10px;
    }
    
    .process-step i {
        transform: rotate(90deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }
    
    .companies-logos {
        padding: 0 20px;
    }
    
    .logo-item {
        margin: 0 20px;
        font-size: 2rem;
    }
    
    .solution-card .card-body {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Success Message Styles */
.success-message {
    background: var(--success-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(51, 208, 174, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
