:root {
    --primary-navy: #083D8C;
    --secondary-green: #009966;
    --accent-gold: #C89B2B;
    --dark-slate: #1A1A1A;
    --text-main: #333333;
    --text-light: #64748B;
    --bg-light: #F7F9FC;
    --white: #FFFFFF;
    --border: #E2E8F0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand-logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo-img:hover {
    transform: scale(1.02);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-right: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

.btn {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-green));
    padding: 11px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(8, 61, 140, 0.2);
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 153, 102, 0.3);
}

.secondary-btn {
    background: transparent;
    padding: 11px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.secondary-btn:hover {
    background: var(--bg-light);
    color: var(--dark-slate);
}

.hero {
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #eefbf5 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #4A5568;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-display-panel {
    background: var(--white);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    border-top: 6px solid var(--primary-navy);
}

.hero-display-panel h3 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.panel-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.panel-item:last-child {
    margin-bottom: 0;
}

.panel-icon {
    background: #EFF6FF;
    color: var(--primary-navy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.panel-text h5 {
    color: var(--dark-slate);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.panel-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.45;
}

section {
    padding: 75px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    font-size: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:nth-child(2) {
    border-color: rgba(200, 155, 43, 0.4);
    box-shadow: 0 10px 30px rgba(200, 155, 43, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}

.card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card li {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.card li .checkmark {
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.05rem;
    margin-right: 10px;
    line-height: 1.3;
    flex-shrink: 0;
    user-select: none;
}

.card li .list-text {
    flex: 1;
}

/* --- TRUST RIBBON --- */
.trust-banner-section {
    padding: 0;
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.trust-banner-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 45px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
}

.trust-banner-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.trust-banner-title-row h3 {
    color: #0E2246;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.trust-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

.trust-pillar {
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.trust-pillar:not(:last-child) {
    border-right: 1px solid #EEF2F6;
}

.trust-icon-box {
    width: 76px;
    height: 76px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #F8FAFC 60%, #E2E8F0 100%);
    border: 1px solid rgba(203, 213, 225, 0.7);
    box-shadow: 0 4px 8px rgba(148, 163, 184, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-icon-box svg {
    transition: transform 0.35s ease;
    width: 28px;
    height: 28px;
}

.trust-icon-box svg path,
.trust-icon-box svg circle,
.trust-icon-box svg line,
.trust-icon-box svg polyline {
    stroke: #0E2246;
    stroke-width: 2;
    transition: stroke 0.35s ease;
}

.trust-pillar:hover .trust-icon-box {
    transform: translateY(-4px);
    background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #EFF6FF 50%, #DBEAFE 100%);
    border-color: #BFDBFE;
    box-shadow: 0 10px 20px rgba(8, 61, 140, 0.1);
}

.trust-pillar:hover .trust-icon-box svg {
    transform: scale(1.05);
}

.trust-pillar:hover .trust-icon-box svg path,
.trust-pillar:hover .trust-icon-box svg circle,
.trust-pillar:hover .trust-icon-box svg line,
.trust-pillar:hover .trust-icon-box svg polyline {
    stroke: var(--secondary-green);
}

.trust-pillar p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0E2246;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: color 0.3s;
}

.trust-pillar:hover p {
    color: var(--primary-navy);
}

/* --- CONTACT FORM (SINGLE PAGE LAYOUT) --- */
.contact-layout {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-green));
    color: var(--white);
    padding: 35px;
    text-align: center;
}

.contact-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-body {
    padding: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--dark-slate);
    letter-spacing: 0.5px;
}

.form-group label .required-asterisk {
    color: #EF4444;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: var(--bg-light);
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 61, 140, 0.08);
}

.form-actions {
    margin-top: 25px;
}

footer {
    background: #111827;
    color: #9CA3AF;
    padding: 50px 0 25px 0;
    text-align: center;
    border-top: 5px solid var(--secondary-green);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    /* filter: brightness(0) invert(1); */
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #1F2937;
    font-size: 0.8rem;
}

@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 90px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .trust-banner-section {
        margin-top: -20px;
        padding: 0 10px;
    }

    .trust-grid-5 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-pillar:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .nav-links {
        display: none;
    }
}