:root
{
    --header-height: 60px;
    --footer-height: 30px;
    --primary-dark: #001640;
    --primary: #00236A;
    --primary-medium: #1E4FA8;
    --primary-light: #7C93BE;
    --primary-accent: #DEE7F5;
    --secondary: #389A1F;
    --secondary-dark: #2C7A18;
    --white: #FFFFFF;
    --text-dark: #212A37;
    --text-muted: #5F6B7A;
}

html, body
{
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-optical-sizing: auto;
    background-color: var(--white);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
}

a
{
    color: var(--primary);
    text-decoration: underline;
    font-weight: bold;
}

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

input, textarea, select
{
    font-weight: bold;
}

input::placeholder, textarea::placeholder
{
    color: #666;
    font-style: italic;
    opacity: 0.7;
}

h1 { font-size: 2.5em; font-weight: 700; }
h2 { font-size: 1.75em; font-weight: 600; }
h3 { font-size: 1.5em; font-weight: 600; }
h4 { font-size: 1.25em; font-weight: 600; }
h5 { font-size: 1.1em; font-weight: 600; }

/*************************************************************************************************/

.pos-absolute { position: absolute; }
.pos-relative { position: relative; }
.not-visible { display: none; }
.indent-0 { text-indent: 0 !important; }
.indent-1 { text-indent: 1rem !important; }
.indent-2 { text-indent: 2rem !important; }
.mw-75 { max-width: 75% !important; }
.mw-90 { max-width: 90% !important; }
.text-08m { font-size: 0.8em; }
.text-09m { font-size: 0.9em; }
.text-12m { font-size: 1.2em; }
.text-15m { font-size: 1.5em; }
.w-content { max-width: fit-content; }

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

/*************************************************************************************************/

header
{
    z-index: 999;
    border-bottom: 2px solid var(--secondary);
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

header .header-links
{
    margin: auto;
    align-items: center;
    justify-content: center;
}

header .header-links a
{
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
    margin-left: 4px;
    margin-right: 4px;
}

header .header-links a:hover
{
    text-decoration: underline;
    color: var(--primary-accent);
}

header img
{
    height: 40px;
}

header .header-phone
{
    color: var(--white);
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

header .header-phone:hover
{
    color: var(--primary-accent);
    text-decoration: none;
}

body
{
    padding-top: var(--header-height, 60px);
}

main
{
    padding: 1rem;
    overflow-y: auto;
    padding-bottom: 80px;
}

footer
{
    z-index: 999;
    background-color: var(--primary);
    border-top: 2px solid var(--secondary);
    font-size: 0.8em;
    color: var(--white);
}

footer .footer-links a
{
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
    margin-left: 4px;
    margin-right: 4px;
}

footer .footer-links a:hover
{
    text-decoration: underline;
    color: var(--primary-accent);
}

/*************************************************************************************************/

.content-section
{
    padding: 3rem 0;
}

@media (max-width: 768px)
{
    .content-section { padding: 2rem 0; }
}

/*************************************************************************************************/

.hero-section
{
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--white);
}

.hero-section h1
{
    font-size: 3em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section .lead
{
    font-size: 1.25em;
    opacity: 0.9;
}

.hero-image
{
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/*************************************************************************************************/

.btn-cta
{
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover
{
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 154, 31, 0.4);
}

.btn-outline-primary
{
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
}

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

/*************************************************************************************************/

.step-circle
{
    position: relative;
    display: inline-block;
}

.step-icon
{
    width: 60px;
    height: 60px;
}

.circle-bg
{
    width: 150px;
    height: 150px;
}

/*************************************************************************************************/

.trust-section
{
    background-color: var(--white);
}

.trust-icon
{
    width: 60px;
    height: 60px;
}

/*************************************************************************************************/

.mobile-mockup
{
    max-width: 250px;
    height: auto;
}

/*************************************************************************************************/

.review-card
{
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 22, 64, 0.08);
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.stars
{
    color: #FFB800;
    font-size: 1.1em;
}

/*************************************************************************************************/

.service-card
{
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 22, 64, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover
{
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 22, 64, 0.15);
}

.service-image
{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.service-list
{
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.service-list li
{
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before
{
    content: "\2713";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/*************************************************************************************************/

.service-detail-list
{
    list-style: none;
    padding-left: 0;
}

.service-detail-list li
{
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-list li::before
{
    content: "\2713";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/*************************************************************************************************/

.pricing-box
{
    background: var(--primary-accent);
    border-radius: 12px;
    padding: 1.5rem;
}

.pricing-box .price
{
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

/*************************************************************************************************/

.value-icon i
{
    color: var(--secondary);
}

/*************************************************************************************************/

.form-control:focus, .form-select:focus
{
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(56, 154, 31, 0.25);
}

.form-check-input:checked
{
    background-color: var(--primary);
    border-color: var(--primary);
}

/*************************************************************************************************/

.accordion-button:not(.collapsed)
{
    color: var(--primary);
    background-color: var(--primary-accent);
}

.accordion-button:focus
{
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(0, 35, 106, 0.25);
}
