/* CSS Variables for Colors - Original Greens */
:root {
    --military-green: #648261;          /* Original military green */
    --dark-green: #4a6148;              /* Original dark green */
    --silver: #737373;
    --light-silver: #e8e8e8;
    --black: #000000;
    --white: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header Styles */
header {
    background-color: var(--military-green);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background-color: var(--dark-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: var(--light-silver);
}

.tagline p {
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(100, 130, 97, 0.85), rgba(100, 130, 97, 0.9)), url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--black);
}

/* Services Section - Updated for single service */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--military-green);
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--silver);
    margin: 15px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--light-silver);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.single-service .service-content {
    padding: 35px;
}

.service-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--military-green);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-content p {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Plumbing Plan Review Checklist Section */
.checklist {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.checklist-content {
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    padding: 0 20px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--military-green);
}

.checklist-item i {
    color: var(--military-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.checklist-text h3 {
    color: var(--military-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.checklist-text p {
    color: var(--black);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--military-green);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--military-green);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.1rem;
}

.service-area {
    background-color: var(--dark-green);
    padding: 20px;
    border-radius: 8px;
}

.service-area h3 {
    margin-bottom: 10px;
}

.contact-form {
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--military-green);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Form Email Styling */
.form-intro {
    margin-bottom: 25px;
    color: var(--silver);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--silver);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.file-upload-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--silver);
    border-radius: 5px;
    background-color: #f9f9f9;
    cursor: default;
}

.file-upload-btn {
    background-color: var(--silver);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.file-upload-btn:hover {
    background-color: #5a5a5a;
}

.file-upload-btn i {
    margin-right: 8px;
}

.file-upload-hidden {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.file-upload-note {
    font-size: 0.85rem;
    color: var(--silver);
    margin-top: 8px;
    font-style: italic;
}

.form-instructions {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.form-instructions p {
    margin: 0;
    color: var(--dark-green);
}

.form-instructions strong {
    color: var(--military-green);
}

.submit-btn {
    background-color: var(--military-green);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--dark-green);
}

.submit-btn i {
    margin-right: 8px;
}

/* Phone and Email Links */
.phone-link, .email-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-link:hover, .email-link:hover {
    text-decoration: underline;
    color: #f0f0f0;
}

.small-note {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-top: 5px;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 1rem;
}

.footer-links a {
    color: var(--silver);
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .checklist-item i {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tagline p {
        text-align: center;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .file-upload-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .file-upload-input,
    .file-upload-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-img {
        height: 200px;
    }
    
    .single-service .service-content {
        padding: 25px;
    }
}
/* Form Instructions Styling */
.instructions-list {
    margin: 15px 0 15px 20px;
}

.instructions-list li {
    margin-bottom: 8px;
    color: var(--black);
}

.instructions-list li strong {
    color: var(--military-green);
}

.file-reminder {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 12px 15px;
    margin: 15px 0 0 0;
    border-radius: 4px;
    font-size: 0.95rem;
}

.file-reminder strong {
    color: #e65100;
}

/* Remove old file upload styles */
.file-upload-wrapper,
.file-upload-input,
.file-upload-btn,
.file-upload-hidden,
.file-upload-note {
    display: none;
}