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

html {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }


.site-header {
    background-color: #1e3a8a;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-highlight {
    color: #f59e0b;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fcd34d;
}

.nav-active {
    color: #f59e0b !important;
}


.btn {
    display: inline-block;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #f59e0b;
    color: #1e3a8a;
}

.btn-primary:hover {
    background-color: #fbbf24;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #172554;
}

.btn-emergency {
    background-color: #dc2626;
    color: #ffffff;
    animation: pulse-glow 2s infinite;
}

.btn-emergency:hover {
    background-color: #b91c1c;
}

.hero {
    background-color: #172554;
    color: #ffffff;
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-tagline {
    background-color: rgba(245, 158, 11, 0.2);
    color: #fde047;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: #e0f2fe;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-cover: cover;
    border-radius: 0.75rem;
    border: 4px solid rgba(30, 58, 138, 0.5);
}

.subpage-banner {
    background-color: #172554;
    color: #ffffff;
    text-align: center;
    padding: 3.5rem 0;
}

.subpage-banner h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subpage-banner p {
    color: #93c5fd;
}


.stats-bar {
    background-color: #f59e0b;
    color: #172554;
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 900;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.8;
}


.section-padding {
    padding: 5rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

.section-title {
    font-size: 1.875rem;
    color: #172554;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 4px;
    background-color: #f59e0b;
    border-radius: 2px;
}

.text-block p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.inline-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}


.card-list {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-list h3 {
    font-size: 1.5rem;
    color: #172554;
    margin-bottom: 1.5rem;
}

.list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.list-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.list-title {
    font-weight: 700;
    color: #111827;
}

.list-desc {
    font-size: 0.875rem;
    color: #6b7280;
}


.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-emergency {
    border: 2px solid #fca5a5;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.emergency-ribbon {
    background-color: #ef4444;
    color: #ffffff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-body h2 {
    font-size: 1.25rem;
    color: #172554;
    margin-bottom: 1rem;
}

.card-ul {
    list-style: none;
    font-size: 0.875rem;
    color: #4b5563;
}

.card-ul li {
    margin-bottom: 0.6rem;
}

.card-footer {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-t: 1px solid #f3f4f6;
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}


.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    padding: 1.5rem;
    text-align: center;
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1rem;
    color: #111827;
}

.team-role {
    font-size: 0.75rem;
    color: #d97706;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.25rem;
}


.bg-light { background-color: #f0fdf4; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }

.review-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    color: #4b5563;
    font-style: italic;
    line-height: 1.5;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 0.25rem;
    margin-top: 1rem;
}

.review-author {
    font-weight: 700;
    color: #172554;
    font-size: 0.875rem;
}


.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.875rem;
}

.pricing-table th {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-table tr:hover {
    background-color: #f9fafb;
}

.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.color-blue { color: #1e3a8a; }
.color-red { color: #dc2626; }


.form-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
    font-family: inherit;
}

.form-control:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 1px;
}


.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-box {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
}

.hours-box h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #2563eb;
    font-size: 0.875rem;
}

.hours-row-emergency {
    border-bottom: none;
    color: #fde047;
    font-weight: 700;
}


.faq-box h3 { margin-bottom: 1rem; color: #172554; }
.faq-item { margin-bottom: 1.25rem; font-size: 0.875rem; }
.faq-q { font-weight: 700; color: #111827; margin-bottom: 0.25rem; }
.faq-a { color: #4b5563; }


#form-toast {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 100;
    font-weight: 500;
    transition: all 0.4s ease;
}

.bg-emerald { background-color: #10b981; }
.bg-red { background-color: #ef4444; }

.fade-in-up { animation: fadeInUp 0.5s ease-out forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}


.site-footer {
    background-color: #172554;
    color: #ffffff;
    padding: 3rem 0 1.5rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-bottom: 1px solid #1e3a8a;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; }
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column h3 { color: #f59e0b; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #bfdbfe; text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: #f59e0b; }
.footer-p { font-size: 0.875rem; color: #bfdbfe; max-width: 280px; line-height: 1.5; }
.footer-phone { color: #f59e0b; font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; }
.copyright { text-align: center; font-size: 0.75rem; color: #93c5fd; }
