:root {
    --primary-blue: #0d6efd;
    --primary-green: #1abc9c;
    --primary-white: #f5fbff;
    --light-bg: #f5fbff;
    --dark-text: #212529;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark-text);
}

span.text-accent {
    color: var(--primary-green) !important;
}

/* NAVBAR */
.navbar {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-icon {
    max-height: 2.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* BUTTONS */
.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
}

.btn-accent {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover {
    background: #17a589;
    border-color: #148f77;
    color: #fff;
}

.btn-light {
    background: var(--primary-white);
    border-color: var(--primary-white);
    font-weight: 600;
}

.btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 150, 136, 0.7)), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: white;
    min-height: 60vh;
}

/* STATS BAR */
.stats-bar {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    color: #6c757d;
    font-size: .9rem;
    margin-top: .5rem;
}

/* SECTION STYLES */
section {
    padding-top: 2rem;
    margin-block: 2rem;
}

.section-title span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .85rem;
    color: var(--primary-green);
    font-weight: 700;
    display: block;
    margin-bottom: .5rem;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.bg-soft-blue {
    background: var(--light-bg);
    padding-bottom: 3rem;
}

/* SERVICE CARDS */
.service-card {
    border: 2px solid #e9ecef;
    border-radius: 1rem;
    padding: 2rem;
    transition: all .3s;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 35px rgba(13, 110, 253, .15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, .1);
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.service-icon svg path {
    fill: var(--primary-blue);
    stroke: var(--primary-blue);
    stroke-width: .02rem;
}

.service-icon svg path.nofill {
    fill: none;
}

/* CONTACT FORM CARD */
.contact-card {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(13, 110, 253, .2);
    border: 0;
    overflow: hidden;
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .15);
}

.required {
    color: #dc3545;
}

/* TEAM CARDS */
.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all .3s;
}

.team-member:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 20%;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    margin-bottom: 1.25rem;
}

/* REVIEW CARD */
.review-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    padding: 2rem;
    height: 100%;
    position: relative;
}

.review-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: .75rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* BLOG CARDS */
.blog-card {
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: all .3s;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.blog-img {
    height: 220px;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-green);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
}

/* TRUST BADGES */
.trust-badge {
    padding: 1.5rem;
    text-align: center;
    border-radius: .75rem;
    background: #fff;
    border: 2px solid #e9ecef;
    height: 100%;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: .75rem;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: #fff;
    padding: 4rem 0;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1030;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
    font-size: 1.75rem;
    text-decoration: none;
    transition: all .3s;
}

.floating-whatsapp a:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* FOOTER */
footer {
    background: #212529;
    color: #adb5bd;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color .3s;
}

footer a:hover {
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-icon {
    max-height: 3rem;
    margin-bottom: .5rem;
}

@media screen and (min-width: 576px) {
    .hero {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.75rem;
    }

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