/* --- Global Styles and Typography (Premium Look) --- */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fcfcfc; /* Very clean background */
    color: #343a40; /* Charcoal text */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #0056b3; /* Deep, professional blue for main headings */
    font-weight: 700;
}

/* --- Header and Navigation --- */
header {
    background-color: #ffffff;
    border-top: 4px solid #ff7a00; /* Orange top border */
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    color: #343a40;
}

header nav {
    float: right;
    margin-top: 5px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
    margin-left: 25px;
}

header nav ul li a {
    color: #343a40;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff7a00; /* Orange hover */
}

/* --- Call-to-Action Button (CTA) --- */
.cta-button {
    display: inline-block;
    background-color: #ff7a00; /* Safety Orange/Yellow CTA */
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #cc6200;
    transform: translateY(-2px);
}

/* --- FULL WIDTH HERO SECTION (Dramatic Background Image) --- */
.hero-full-width {
    /* *** CRITICAL: UPLOAD A LARGE IMAGE TO images/hero_bg.jpg *** */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* Dark overlay */
        url('images/hero_bg.jpg') no-repeat center center; /* Your image here! */
    background-size: cover;
    padding: 120px 0;
    margin-bottom: 30px;
}

.hero-content {
    text-align: center;
    color: white; /* White text over dark background */
}

.hero-content h2 {
    color: white; /* Heading white */
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 1.3em;
    color: #ddd;
    font-weight: 300;
}

/* --- Services List (Grid) --- */
.services {
    padding: 40px 0;
}
.services h3 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid #ff7a00; /* Orange border highlight */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-item h4 {
    color: #343a40;
    margin-top: 15px;
    font-size: 1.3em;
}

/* --- Image Features Section --- */
.image-features {
    padding: 60px 0;
    background-color: #f1f2f3;
}

.image-features h2 {
    text-align: center;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    color: #ff7a00; /* Orange subheading */
    font-size: 1.8em;
}

.feature-image {
    width: 50%;
    max-width: 550px;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Portfolio Image Gallery (Kept clean and functional) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    padding: 20px 0;
}

.gallery-image {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.03); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- Contact Form Styling --- */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0056b3;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #343a40;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

/* --- Footer --- */
footer {
    background-color: #343a40; /* Charcoal footer */
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 5px solid #ff7a00;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item.reverse {
        flex-direction: column; 
    }

    .feature-image {
        width: 100%;
        order: -1; 
        margin-bottom: 10px;
    }
}
