/* Reset basic margins and setups */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #1a1d20;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.btn-nav {
    background: #ffc107; /* Construction Yellow */
    color: #1a1d20 !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 29, 32, 0.8), rgba(26, 29, 32, 0.8)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}

.btn-primary {
    background: #ffc107;
    color: #1a1d20;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Services Section */
.services, .contact {
    padding: 60px 10%;
    text-align: center;
}

.services h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-top: 5px solid #ffc107;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Contact Form */
.contact {
    background: #eef1f4;
}

.quote-form {
    max-width: 600px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-submit {
    background: #1a1d20;
    color: white;
    padding: 15px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #ffc107;
    color: #1a1d20;
}

footer {
    background: #1a1d20;
    color: #6c757d;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Contact Section Restructure */
.section-subtitle {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.info-item h3 {
    margin-bottom: 8px;
    color: #1a1d20;
}

.info-item a {
    color: #ffc107;
    font-weight: bold;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
}

.contact-form-wrapper .quote-form {
    margin-top: 0; /* Clear previous styling alignment */
}