/* --- 1. Global Styles & Reset --- */
:root {
    --primary-color: #1a5a9c; /* Professional/Trust Blue */
    --secondary-color: #0d385e; /* Darker Blue */
    --accent-color: #f7a500; /* Subtle Pop of Gold/Yellow */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --background-light: #fff;
    --background-gray: #f9f9f9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
}

p.subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

section {
    padding: 30px 0;
}

/* Reduced padding for Mobile (screens under 768px) */
@media (max-width: 768px) {
  section {
    padding: 15px 0; /* Adjust as needed, e.g., 15-20px */
  }
}


/* --- 2. Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-call {
    background-color: var(--accent-color);
    color: var(--text-dark);
    margin-left: 15px;
    border: 2px solid var(--accent-color);
}

.btn-call:hover {
    background-color: #e09300;
}


/* --- 3. Header & Navigation --- */
header {
    background-color: var(--background-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo img {
    height: 150px; /* Adjust based on your logo size */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- 4. Hero Section --- */
.hero {
    background: linear-gradient(rgba(26, 90, 156, 0.8), rgba(26, 90, 156, 0.6)), url('hero-bg.jpg') no-repeat center center/cover; 
    /* Replace 'hero-bg.jpg' with a relevant background image */
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

/* --- 5. Services Section --- */
.services {
    background-color: var(--background-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(26, 90, 156, 0.1);
}

.icon-large {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* --- 6. Service Areas Section --- */
.areas {
    text-align: center;
}

.area-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.area-list {
    list-style: none;
    columns: 2; /* Display list items in two columns */
    text-align: left;
    max-width: 400px;
}

.area-list li {
    padding: 5px 0;
    font-size: 1.1em;
    border-bottom: 1px dashed #ddd;
}

.county-note {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    max-width: 250px;
}

.county-note p {
    margin-bottom: 10px;
}

/* --- 7. About Us Section --- */
.about {
    background-color: var(--background-gray);
    text-align: center;
    padding: 80px 0;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
}

/* --- 8. Contact Section --- */
.contact {
    background: var(--secondary-color);
    color: var(--text-light);
}

.contact h2 {
    color: var(--accent-color);
}

.contact p.subtitle {
    color: #a0c0e0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 450px;
}

.contact-info h3 {
    color: var(--text-light);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Form Styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.contact-form textarea {
    resize: vertical;
}

/* --- 9. Footer --- */
footer {
    background-color: var(--text-dark);
    color: #bbb;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* --- 10. Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }
    
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }
    
    .contact-grid, .area-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .area-list {
        columns: 1;
        max-width: 100%;
        text-align: center;
    }
    
    .area-list li {
        border-bottom: none;
    }
}