/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: #003087;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 75px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    display: none; /* Text hidden, logo only */
}

/* Hamburger Menu */
.nav-toggle {
    display: none; /* Hidden by default */
}

.nav-toggle-label {
    display: none; /* Hidden on desktop */
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 3px;
    width: 25px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    bottom: -8px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #003087;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .nav-toggle:checked ~ nav {
        transform: translateX(0);
    }

    .logo-image {
        max-height: 60px;
    }
}
/* Hero Section Styles */
.hero {
    background-color: #f5f5f5; /* Light gray for contrast */
    padding: 4rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #003087; /* Matches header blue */
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffcc00; /* Yellow for CTA */
    color: #003087;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6b800; /* Darker yellow on hover */
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-image {
        margin-top: 2rem;
    }
}
/* Footer Styles */
footer {
    background-color: #003087;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-social p {
    margin-bottom: 0.5rem;
}

.footer-social a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #e6b800;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e6b800;
}

.footer-credit {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-credit a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        gap: 1rem;
    }
    .footer-links {
        margin: 0.5rem 0;
    }
}
/* Quote Section Styles */
.quote-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.quote-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 2rem;
}

#quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #003087;
    box-shadow: 0 0 5px rgba(0, 48, 135, 0.5);
}

.g-recaptcha {
    margin: 1rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quote-container h1 {
        font-size: 2rem;
    }
    .form-group input,
    .form-group select {
        font-size: 0.9rem;
    }
}
/* Form Label Styles */
.form-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Ensure inputs stay full-width below labels */
.form-group input,
.form-group select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-group label {
        font-size: 0.9rem;
    }
}
/* Services Section Styles */
.services-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1rem;
}

.services-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-item h2 {
    font-size: 1.5rem;
    color: #003087;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 1rem;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-container h1 {
        font-size: 2rem;
    }
    .services-container p {
        font-size: 1rem;
    }
    .service-item h2 {
        font-size: 1.3rem;
    }
}
/* Maintenance Section Styles */
.maintenance-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.maintenance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.maintenance-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1rem;
}

.maintenance-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.plan-item h2 {
    font-size: 1.5rem;
    color: #003087;
    margin-bottom: 0.5rem;
}

.plan-item p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .maintenance-container h1 {
        font-size: 2rem;
    }
    .maintenance-container p {
        font-size: 1rem;
    }
    .plan-item h2 {
        font-size: 1.3rem;
    }
}
/* Contact Section Styles */
.contact-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1rem;
}

.contact-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    color: #e6b800;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #003087;
    box-shadow: 0 0 5px rgba(0, 48, 135, 0.5);
}

.estimate-button {
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container h1 {
        font-size: 2rem;
    }
    .contact-container p {
        font-size: 1rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
}
/* Textarea for Quote Form */
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #003087;
    box-shadow: 0 0 5px rgba(0, 48, 135, 0.5);
}
/* About Section Styles */
.about-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1rem;
}

.about-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #003087;
    margin-bottom: 0.5rem;
}

.about-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-text ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container h1 {
        font-size: 2rem;
    }
    .about-container p {
        font-size: 1rem;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.5rem;
    }
    .about-image {
        margin-top: 2rem;
    }
}
/* Blog Hero Section Styles */
.blog-hero {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1rem;
}

.blog-hero-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.blog-links h2 {
    font-size: 1.8rem;
    color: #003087;
    margin-bottom: 1rem;
}

.blog-links ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.blog-links ul li {
    margin-bottom: 1rem;
}

.blog-links ul li a {
    font-size: 1.1rem;
    color: #003087;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-links ul li a:hover {
    color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-hero-container h1 {
        font-size: 2rem;
    }
    .blog-hero-container p {
        font-size: 1rem;
    }
    .blog-links h2 {
        font-size: 1.5rem;
    }
    .blog-links ul li a {
        font-size: 1rem;
    }
}
/* Breadcrumb Styles */
.breadcrumb {
    background-color: #fff;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #ccc;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #333;
}

.breadcrumb-container a {
    color: #003087;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-container a:hover {
    color: #ffcc00;
}

.breadcrumb-container span {
    color: #666;
}

/* Article Section Styles */
.article-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.article-container h1 {
    font-size: 2.5rem;
    color: #003087;
    margin-bottom: 1.5rem;
}

.article-container h2 {
    font-size: 1.8rem;
    color: #003087;
    margin: 1.5rem 0 0.5rem;
}

.article-container p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-container .intro {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.article-container .conclusion {
    font-weight: bold;
    margin-top: 2rem;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-image .caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.article-container .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .breadcrumb-container {
        font-size: 0.8rem;
    }
    .article-container h1 {
        font-size: 2rem;
    }
    .article-container h2 {
        font-size: 1.5rem;
    }
    .article-container p {
        font-size: 0.95rem;
    }
    .article-container .intro {
        font-size: 1rem;
    }
}