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

body {
    font-family: 'Poppins', 'Poppins Fallback', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #101743;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
    color: #101743;
}

.logo-text {
    color: #101743;
}

.navbar-nav .nav-link {
    color: #101743;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #101743;
    opacity: 0.8;
}

.btn-outline-primary {
    color: #101743;
    border-color: #101743;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #101743;
    border-color: #101743;
    color: #fff;
}

.btn-primary {
    background-color: #101743;
    border-color: #101743;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d1435;
    border-color: #0d1435;
    transform: translateY(-1px);
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #101743;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-badge {
    margin: 2rem 0;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.badge-container i {
    margin: 0 0.5rem;
}

.hero-buttons {
    margin-top: 3rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Demo Section */
.demo-section {
    background-color: #fff;
    padding: 5rem 0;
}

.demo-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.platform-mockup {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mockup-header {
    background: #101743;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.mockup-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.mockup-content {
    display: flex;
    min-height: 400px;
}

.dashboard-sidebar {
    background: #f8f9fa;
    width: 250px;
    padding: 1.5rem;
    border-right: 1px solid #e9ecef;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: #e9ecef;
}

.sidebar-item.active {
    background: #101743;
    color: white;
}

.sidebar-item i {
    margin-right: 0.8rem;
    width: 20px;
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    color: #101743;
    font-weight: 600;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #101743;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.campaign-preview {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.campaign-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-info h4 {
    color: #101743;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.campaign-info p {
    color: #6c757d;
    margin: 0;
}

.campaign-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.campaign-status.active {
    background: #d4edda;
    color: #155724;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #101743;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #101743, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #101743;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #101743 0%, #2c3e50 100%);
    color: white;
    padding: 5rem 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-form-container h2 {
    color: #101743;
    font-weight: 700;
}

.contact-form-container p {
    color: #6c757d;
}

.form-label {
    color: #101743;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #101743;
    box-shadow: 0 0 0 0.2rem rgba(16, 23, 67, 0.25);
}

.thank-you-message {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 1rem;
}

.footer-brand .logo-container {
    font-size: 1.5rem;
}

.footer h5 {
    color: #101743;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #101743;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #101743;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.copyright {
    color: #6c757d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mockup-content {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .campaign-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0;
    }
}
