:root {
    --primary-color: #0b3b60;
    /* Deep trust blue */
    --accent-color: #d14900;
    /* Action orange */
    --accent-hover: #b03d00;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --border-color: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
}

a {
    transition: all 0.2s ease;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utilities */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background-color: #f0f0f0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info {
    display: flex;
    gap: 20px;
    color: #555;
}

.emergency-badge {
    color: #d00;
    font-weight: bold;
}

.top-phone a {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 59, 96, 0.85);
    /* Proper navy overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 600;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Services */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-image-placeholder {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    color: var(--text-main);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card>p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.method-icon {
    font-size: 2rem;
}

.method p {
    margin: 0;
    color: var(--text-muted);
}

.method a {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .top-phone {
        width: 100%;
        text-align: center;
    }

    .desktop-nav {
        display: none;
    }

    .d-none-mobile {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image-placeholder {
        width: 100%;
        height: 250px;
    }
}