/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand h1 {
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d97706;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.highlight {
    color: #2563eb;
}

.hero-text p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.feature-item i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    background: #dcfce7;
    padding: 8px;
    border-radius: 50%;
}

.badge-icon i {
    color: #16a34a;
    width: 20px;
    height: 20px;
}

.badge-title {
    font-weight: 600;
    color: #1f2937;
}

.badge-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* Stats Section */
.stats {
    background: #2563eb;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #93c5fd;
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    background: #2563eb;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.service-features i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature .feature-icon {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feature-icon i {
    width: 20px;
    height: 20px;
}

.feature-content h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.badge-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.badge-text {
    font-size: 14px;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-filled {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

.testimonial-card p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-position {
    font-size: 14px;
    color: #6b7280;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
}

.price-prefix {
    color: #888;
    font-size: 0.7em;
    filter: blur(0.2px);
    opacity: 0.8;
    margin-right: 0.2em;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.price-period {
    color: #6b7280;
    margin-bottom: 8px;
}

.price-hours {
    font-size: 14px;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-features i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.pricing-btn {
    width: 100%;
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: #e5e7eb;
}

.pricing-btn.primary {
    background: #2563eb;
    color: white;
}

.pricing-btn.primary:hover {
    background: #1d4ed8;
}

/* Contact Section */
.contact {
    padding: 60px 0 40px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-image-container {
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 32px;
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-fixed {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    height: fit-content;
}

.contact-details-fixed {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.contact-details-fixed .contact-item {
    flex: 1 1 0;
    min-width: 180px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 8px 0;
}

.contact-icon {
    background: #2563eb;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-icon i {
    width: 20px;
    height: 20px;
}

.contact-text {
    flex: 1;
    min-width: 0;
}

.contact-text h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-text p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

.contact-form-container {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    height: fit-content;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit-btn:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
    clear: both;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    background: #374151;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #4b5563;
}

.social-links i {
    width: 20px;
    height: 20px;
}

.footer-section {
    min-width: 150px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #9ca3af;
}

/* Success Page Styles */
.success-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    display: flex;
    align-items: center;
}

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

.success-icon {
    background: #dcfce7;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.success-icon i {
    color: #16a34a;
    width: 40px;
    height: 40px;
}

.success-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.success-message {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.success-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.info-icon {
    background: #2563eb;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 20px;
    height: 20px;
}

.info-text h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.info-text p {
    color: #6b7280;
    font-size: 14px;
}

/* Coming Soon Custom AI Assistant Section */
.coming-soon-ai {
    background: linear-gradient(90deg, #4f8cff 0%, #38e8c3 100%);
    padding: 64px 0;
    margin: 48px 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(79,140,255,0.15);
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.coming-soon-icon {
    margin-bottom: 24px;
}

.coming-soon-icon i {
    width: 72px;
    height: 72px;
    color: #fff;
    background: rgba(0,0,0,0.10);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(56,232,195,0.15);
    animation: ai-bounce 1.2s infinite alternate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes ai-bounce {
    0% { transform: translateY(0);}
    100% { transform: translateY(-18px);}
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.coming-soon-badge {
    background: #fff;
    color: #38e8c3;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    padding: 6px 18px;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(56,232,195,0.15);
    animation: badge-pulse 1.5s infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(56,232,195,0.4);}
    70% { box-shadow: 0 0 0 16px rgba(56,232,195,0);}
    100% { box-shadow: 0 0 0 0 rgba(56,232,195,0);}
}

.coming-soon-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 0.5em auto;
    font-weight: 500;
}

.coming-soon-highlight {
    background: rgba(0,0,0,0.10);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

.coming-soon-secondary {
    font-size: 1.1em;
}

.coming-soon-strong {
    font-size: 1.15em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(56,232,195,0.15);
}

/* Responsive for Coming Soon Section */
@media (max-width: 768px) {
    .coming-soon-ai {
        padding: 40px 0;
        margin: 32px 0;
        border-radius: 16px;
    }
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    .coming-soon-content p {
        font-size: 1rem;
    }
    .coming-soon-icon i {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Next Steps Section */
.next-steps {
    margin-top: 60px;
    text-align: center;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.step-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e5e7eb;
}

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

.step-item h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 18px;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero and Contact Images */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Contact image styling handled by container *//* FORCE REFRESH */