:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #334155;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 120px 0 100px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-features {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-item i {
    color: #86efac;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes springIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.btn-custom {
    background: white;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured .pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.pricing-header {
    background: linear-gradient(135deg, #5976b5, var(--secondary-color));
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-price .period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2.5rem 2rem;
}

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

.pricing-features li {
    padding: 0.8rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
}

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

.pricing-card.featured .btn-pricing {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured .btn-pricing:hover {
    background: var(--secondary-color);
}

.stats-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f172a 100%);
    padding: 80px 0;
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.tech-section {
    padding: 80px 0;
    background: white;
}

.tech-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s;
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item h6 {
    font-weight: 600;
    color: var(--dark-bg);
    margin: 0;
}

.tech-item:hover {
    transform: translateY(-10px);
}

.testimonial-section {
    background: linear-gradient(135deg, #3f4553, var(--secondary-color));
    padding: 80px 0;
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info small {
    color: rgba(255,255,255,0.8);
}

.cta-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.cta-box {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    padding-left: 0;
}

.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, #4b4f5a, var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 25px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form-control, .form-select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.about-section {
    padding: 80px 0;
}

.about-section img {
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.mission-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 5px solid var(--primary-color);
}

.team-member h5 {
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 0;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content .year {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.page-header {
    background: linear-gradient(135deg, #3f4553, var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    margin-top: 76px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.terms-content {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.terms-content h2 {
    color: var(--dark-bg);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.terms-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.terms-content ul, .terms-content ol {
    color: #64748b;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 20px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .cta-box {
        padding: 3rem 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

        .map-section {
            background: var(--light-bg);
            padding: 80px 0;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

.fa-brands,.fab {
    color: white;
}

        .alert {
            border-radius: 15px;
            padding: 15px 20px;
            margin-bottom: 20px;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .alert.show {
            display: block;
        }
