/* Custom CSS for RoboSynq - Pixel-perfect replica of ragobble.com design */

:root {
    --primary-color: rgb(0, 255, 225);
    --primary-hover: rgb(0, 230, 200);
    --text-dark: rgb(0, 0, 0);
    --text-gray: rgb(107, 114, 128);
    --bg-white: rgb(255, 255, 255);
    --border-radius: 3px;
    --card-radius: 25px;
    --font-primary: "DM Sans", sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    text-decoration: none;
    color: var(--text-dark) !important;
}

.logo-container {
    width: 32px;
    height: 32px;
    background-color: var(--text-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: white;
    font-size: 18px;
}

.brand-text {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 400;
    border-radius: var(--border-radius);
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-outline-dark {
    border-radius: var(--border-radius);
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

/* Typography */
.hero-title {
    font-size: 64px;
    font-weight: 350;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.section-title {
    font-size: 48px;
    font-weight: 350;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.intro-title {
    font-size: 42px;
    font-weight: 350;
    color: var(--text-dark);
    line-height: 1.2;
}

.intro-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Sections */
.intro-section {
    background-color: rgba(0, 255, 225, 0.05);
    border-radius: var(--card-radius);
    margin: 2rem 0;
}

.hero-section {
    padding: 4rem 0;
}

.features-section {
    padding: 4rem 0;
}

.how-it-works-section {
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: var(--card-radius);
    margin: 2rem 0;
    padding: 4rem 0;
}

.cta-section {
    padding: 4rem 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Step Cards */
.step-card {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-title {
    font-size: 42px;
    font-weight: 350;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--text-dark) !important;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-info a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .intro-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .hero-section,
    .features-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    .how-it-works-section {
        padding: 2rem 0;
    }
}

/* Pricing Page Specific Styles */
.pricing-section {
    padding: 4rem 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-toggle .btn {
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0 5px;
    font-size: 14px;
}

.pricing-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.1) 0%, rgba(0, 200, 255, 0.1) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-price {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-features i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 16px;
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-form {
    background: white;
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Success Message */
.success-message {
    background-color: rgba(0, 255, 225, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: var(--text-dark);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
}

/* Error Message */
.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: #dc3545;
}

/* Legal Pages */
.legal-section {
    padding: 4rem 0;
}

.legal-content {
    background: white;
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
