﻿


/*NEW STYLE By SCOOBY*/
/* ===== CUSTOM STYLES (override Bootstrap) ===== */
:root {
    --ss-primary: #1e5bb8;
    --ss-dark: #0a2540;
    --ss-accent: #f5a623;
    --ss-light: #f4f7fb;
    --ss-text: #333;
    --ss-muted: #6c757d;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ss-text);
    line-height: 1.6;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--ss-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: var(--ss-accent);
        }

    .top-bar i {
        color: var(--ss-accent);
        margin-right: 5px;
    }

/* ===== NAVBAR ===== */
.navbar {
    background: #343a40 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--ss-dark) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .navbar-brand i {
        color: var(--ss-primary);
        font-size: 28px;
    }

    .navbar-brand .brand-accent {
        color: var(--ss-accent);
    }

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--ss-primary) !important;
    }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--ss-accent);
        }

.btn-cta {
    background: var(--ss-accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

    .btn-cta:hover {
        background: #e09414;
        color: #fff;
        transform: translateY(-2px);
    }

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #eaf1fb 0%, #f4f7fb 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 10%;
        left: 5%;
        width: 80px;
        height: 80px;
        background: var(--ss-accent);
        opacity: 0.15;
        border-radius: 12px;
        transform: rotate(25deg);
    }

    .hero-section::after {
        content: "";
        position: absolute;
        bottom: 15%;
        right: 5%;
        width: 60px;
        height: 60px;
        background: var(--ss-primary);
        opacity: 0.1;
        border-radius: 50%;
    }

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--ss-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title .text-primary-custom {
        color: var(--ss-primary);
    }

    .hero-title .text-accent {
        color: var(--ss-accent);
    }

.hero-subtitle {
    font-size: 18px;
    color: var(--ss-muted);
    margin-bottom: 40px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 45px 35px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card.card-itp {
        background: linear-gradient(135deg, #1e5bb8 0%, #2d6fc9 100%);
    }

    .service-card.card-auto {
        background: linear-gradient(135deg, #0a2540 0%, #123464 100%);
    }

    .service-card .icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .service-card .icon-wrapper i {
            font-size: 36px;
            color: var(--ss-accent);
        }

    .service-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 15px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

    .service-card .btn-light-outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.4);
        padding: 10px 22px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }

        .service-card .btn-light-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
        }

    .service-card .btn-accent {
        background: var(--ss-accent);
        color: #fff;
        border: 2px solid var(--ss-accent);
        padding: 10px 22px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }

        .service-card .btn-accent:hover {
            background: #e09414;
            border-color: #e09414;
            transform: scale(1.05);
        }

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--ss-dark);
    text-align: center;
    margin-bottom: 15px;
}

    .section-title .highlight {
        color: var(--ss-primary);
    }

.section-subtitle {
    text-align: center;
    color: var(--ss-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ===== WHY CHOOSE ===== */
.benefit-box {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

    .benefit-box:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--ss-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .benefit-icon i {
        font-size: 34px;
        color: var(--ss-primary);
        transition: color 0.3s;
    }

.benefit-box:hover .benefit-icon {
    background: var(--ss-primary);
}

    .benefit-box:hover .benefit-icon i {
        color: #fff;
    }

.benefit-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ss-dark);
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--ss-light);
}

.feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-color: var(--ss-primary);
    }

    .feature-card i {
        font-size: 36px;
        color: var(--ss-primary);
        margin-bottom: 15px;
    }

    .feature-card h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--ss-dark);
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 13px;
        color: var(--ss-muted);
        margin: 0;
    }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--ss-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: var(--ss-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.testimonial-card p {
    font-style: italic;
    color: var(--ss-muted);
    font-size: 14px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--ss-dark);
}

.stars {
    color: var(--ss-accent);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient( 135deg, var(--ss-primary) 0%, var(--ss-dark) 100% );
    color: #fff;
    text-align: center;
}

    .cta-section h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
    }

/* ===== FOOTER ===== */
.footer {
    background: var(--ss-dark);
    color: #fff;
    padding: 60px 0 20px;
}

    .footer h5 {
        font-size: 16px;
        font-weight: 700;
        color: var(--ss-accent);
        margin-bottom: 20px;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

            .footer ul a:hover {
                color: var(--ss-accent);
            }

    .footer address {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-style: normal;
        line-height: 1.8;
    }

    .footer .form-control {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 14px;
    }

        .footer .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer .form-control:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--ss-accent);
            color: #fff;
            box-shadow: none;
        }

.btn-send {
    background: var(--ss-primary);
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s;
}

    .btn-send:hover {
        background: #2d6fc9;
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: var(--ss-accent);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .cta-section h2 {
        font-size: 26px;
    }

    section {
        padding: 60px 0;
    }

    .top-bar {
        font-size: 12px;
    }
}
