/* Bootstrap Custom Styles - Professional RADSCALE Design */

/* Variables */
:root {
    --primary-blue: #1b264c;
    --accent-green: #8bd96e;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;
}

/* Typography */
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Navbar */
.navbar-custom {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green);
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #0f1a3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 38, 76, 0.2);
}

.btn-success-custom {
    background: var(--accent-green);
    border: none;
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-success-custom:hover {
    background: #7bc85f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 217, 110, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 14px;
}

.benefit-text {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    height: 100%;
}

.product-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-card .btn-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.product-card .btn-link:hover {
    color: var(--accent-green);
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    font-family: 'Hanken Grotesk', sans-serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Tabs */
.nav-tabs-custom {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.nav-tabs-custom .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 700;
    padding: 1rem 2rem;
    margin-bottom: -2px;
}

.nav-tabs-custom .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--accent-green);
    background: rgba(139, 217, 110, 0.1);
    border-radius: 8px 8px 0 0;
}

/* Solution Cards */
.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.solution-card-body {
    padding: 2rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.testimonial-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Compliance Badges */
.badge-custom {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer-custom {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-custom h5 {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-custom ul li {
    margin-bottom: 0.75rem;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-custom a:hover {
    color: var(--accent-green);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.social-icon:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    color: white;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--accent-green);
    color: var(--primary-blue);
    transform: translateY(-5px);
}
