﻿:root {
    --primary-color: #0d59f2;
    --bg-light: #f5f6f8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--bg-light);
    color: #1a202c;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: transform 0.2s;
}

    .btn-primary:hover {
        background-color: #0b4cd1;
        transform: scale(1.03);
    }

.btn-outline-secondary {
    border-radius: 0.75rem;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
}

/* Sticky Header Tweaks */
header {
    background-color: white;
    z-index: 1020;
    border-bottom: 1px solid #dee2e6;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

/* Custom components */
.badge-soft-primary {
    background-color: rgba(13, 89, 242, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

    .avatar-group img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid white;
        margin-left: -12px;
    }

        .avatar-group img:first-child {
            margin-left: 0;
        }

.feature-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(13, 89, 242, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0;
}

.card-custom {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #edf2f7;
    background: #fff;
}

footer a {
    text-decoration: none;
    color: #718096;
}

    footer a:hover {
        color: var(--primary-color);
    }

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-primary-white {
    color : #ffffff;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: rgba(13, 89, 242, 0.1) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-primary-custom:hover {
        background-color: #0b4cd1;
        color: white;
        transform: translateY(-1px);
    }

/* Sticky Header Shadow */
header.sticky-top {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Hero Section Overlay */
.hero-card {
    min-height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(16, 22, 34, 0.9) 0%, rgba(16, 22, 34, 0.2) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Feature Cards */
.feature-box {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(13, 89, 242, 0.1);
        transform: translateY(-5px);
    }

.icon-container {
    width: 48px;
    height: 48px;
    background: rgba(13, 89, 242, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
    transition: 0.3s;
}

.feature-box:hover .icon-container {
    background: var(--primary-color);
    color: white;
}

/* Experience Cards */
.exp-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}

    .exp-card ul {
        padding-left: 0;
        list-style: none;
    }

    .exp-card li {
        margin-bottom: 12px;
        color: var(--text-muted);
        font-size: 0.9rem;
        display: flex;
        align-items: flex-start;
    }

        .exp-card li::before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 10px;
        }

/* Footer / CTA Banner */
.cta-banner {
    background: rgba(13, 89, 242, 0.05);
    border: 1px solid rgba(13, 89, 242, 0.2);
    border-radius: 20px;
    padding: 60px;
}

.tracking-tight {
    letter-spacing: -0.02em;
}

.fw-black {
    font-weight: 900;
}

/* Navigation */
.nav-link-custom {
    color: var(--text-slate-600);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

    .nav-link-custom:hover {
        color: var(--primary-color);
    }

.nav-link-active {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .pricing-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        box-shadow: 0 25px 50px -12px rgba(13, 89, 242, 0.25);
        position: relative;
        transform: scale(1.05);
        z-index: 10;
    }

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
        margin: 1rem 0;
    }
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Toggle Switch */
.billing-toggle {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    display: inline-flex;
    border: 1px solid #e2e8f0;
}

.toggle-btn {
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    background: transparent;
    color: var(--text-slate-600);
}

    .toggle-btn.active {
        background: #fff;
        color: var(--text-slate-900);
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: opacity 0.2s;
}

    .btn-primary-custom:hover {
        opacity: 0.9;
        color: white;
    }

.btn-slate-custom {
    background-color: #f1f5f9;
    color: var(--text-slate-900);
    border: none;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
}

.check-icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Sticky Header */
header.sticky-top {
    background-color: #fff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 1020;
}

/* Form Styling */
.contact-card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(13, 89, 242, 0.15);
    }

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(13, 89, 242, 0.3);
}

    .btn-primary-custom:hover {
        background-color: #0b4cd1;
        color: white;
        transform: translateY(-1px);
    }

/* Map and Socials */
.map-container {
    height: 320px;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(13, 89, 242, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 89, 242, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
}

    .social-link:hover {
        background: var(--primary-color);
        color: #fff;
    }

/* Newsletter */
.newsletter-banner {
    background: var(--primary-color);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(13, 89, 242, 0.4);
}

.newsletter-input-group {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 1.25rem;
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    background: white;
    border: none;
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    flex-grow: 1;
}