:root {
    --primary-color: #0b1f38; /* Navy Blue */
    --accent-color: #d4af37; /* Gold/Trust color */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.padding-section { padding: 4rem 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo span { color: var(--accent-color); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent-color); }

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover { background-color: #bfa033; }

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 31, 56, 0.8), rgba(11, 31, 56, 0.8)), url('https://images.unsplash.com/photo-1541888081643-eb92d19eb761?auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h2 { font-size: 3rem; margin-bottom: 1rem; color: var(--accent-color); }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; }

/* About Section */
.about-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 300px; }
.about-text h2 { margin-bottom: 1rem; color: var(--primary-color); }
.about-text p { margin-bottom: 1rem; }

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 2rem;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
    border-radius: 5px;
}

.stat-box h3 { font-size: 2rem; color: var(--primary-color); }

/* Features Grid (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.feature-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.feature-item .icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Services */
.services-section h2 { margin-bottom: 2rem; color: var(--primary-color); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }
.service-card h3 { margin-bottom: 1rem; color: var(--accent-color); }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: auto; }

.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover { background: #f0f0f0; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-content p { padding: 1rem 0; }

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container h2 { text-align: center; margin-bottom: 0.5rem; color: var(--primary-color); }
.contact-form-container p { text-align: center; margin-bottom: 2rem; }

.input-group { margin-bottom: 1.5rem; }

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-btn { width: 100%; font-size: 1.1rem; }

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
}

@media (max-width: 768px) {
    .flex-nav { flex-direction: column; gap: 1rem; }
    .hero-content h2 { font-size: 2rem; }
}

/* --- NEW STYLES FOR CONTACT BAR --- */
.top-bar {
    background-color: #05101e; /* Darker shade of primary color */
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.flex-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.direct-contact a:hover {
    color: var(--accent-color) !important;
}

@media (max-width: 768px) {
    .flex-contact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}