:root {
    --primary-color: #0D2137;
    --primary-dark: #091826;
    --primary-light: #1a3a5c;
    --secondary-color: #00A86B;
    --secondary-dark: #008f5a;
    --accent-color: #FF6B35;
    --accent-dark: #e55a25;
    --neutral-bg: #F7F9FC;
    --text-dark: #1a1a2e;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --spacing-section: 80px;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(13, 33, 55, 0.06);
    --shadow-md: 0 8px 24px rgba(13, 33, 55, 0.1);
    --shadow-lg: 0 16px 48px rgba(13, 33, 55, 0.12);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #0D2137 0%, #1a3a5c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 33, 55, 0.92), rgba(0, 168, 107, 0.85));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.bg-light {
    background-color: var(--neutral-bg);
}

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

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(13, 33, 55, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Header & Nav */
header {
    background-color: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.88rem !important;
    border-radius: 6px;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-items i {
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--neutral-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Split */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list li {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(0, 168, 107, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    margin-top: 2px;
    font-size: 0.85rem;
}

.feature-list h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-list p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
}

/* Category Filter & Grid */
.category-filter {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border: 1px solid #eef0f2;
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.category-card .card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.category-tag {
    display: inline-block;
    background: #e7f5ef;
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background-color: var(--neutral-bg);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.compliance-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #eef0f2;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 168, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.compliance-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.compliance-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.compliance-badge {
    display: inline-block;
    background: #e7f5ef;
    color: var(--secondary-color);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 8px;
}

.contact-form > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control,
.form-select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--neutral-bg);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
    background: var(--white);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 168, 107, 0.08);
}

.cta-banner h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Card Box */
.card-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Page Headers */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Styles */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid #eef0f2;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-text > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 400px;
    background: var(--neutral-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-img i {
    font-size: 4rem;
    color: var(--text-muted);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #e8ecf1 0%, #d1d8e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 2rem;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.read-more:hover {
    gap: 10px;
}

/* Blog Post */
.blog-post-header {
    height: 50vh;
    min-height: 350px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    background-size: cover;
    background-position: center;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 33, 55, 0.5) 0%, rgba(13, 33, 55, 0.9) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.header-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.blog-meta {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.85;
    font-weight: 600;
}

.blog-body {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-body h2 {
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.blog-body p {
    margin-bottom: 18px;
    color: var(--text-dark);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.back-link:hover {
    opacity: 0.8;
}

/* Inline CTA Widget */
.inline-cta {
    background: var(--neutral-bg);
    border-left: 4px solid var(--accent-color);
    padding: 28px 32px;
    border-radius: 0 8px 8px 0;
    margin: 40px 0;
}

.inline-cta h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.inline-cta p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #0a1929;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .features-split,
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-img {
        height: auto;
        max-height: 300px;
        order: -1;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 80px 0 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-content {
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-items {
        gap: 20px;
        font-size: 0.78rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}
