/* Wireframe CSS for Intrepid Builders */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: #f5f5f5;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    text-align: left;
}

ul {
    text-align: left;
}

li {
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Navigation */
nav {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    width: 120px;
    height: 40px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #666;
}

.cta-button {
    background: none;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.cta-button:hover {
    background: #f5f5f5;
}

/* Image Placeholders */
.image-placeholder {
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    text-align: center;
}

.hero-image {
    height: 400px;
    width: 100%;
    margin-bottom: 2rem;
}

.gallery-image {
    height: 250px;
    width: 100%;
}

.service-image {
    height: 200px;
    width: 100%;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero .subhead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1rem;
}

.card a {
    text-decoration: underline;
    color: #333;
    font-weight: 500;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

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

/* Trust bar */
.trust-bar {
    margin: 2rem 0;
}

.trust-bar h3 {
    margin-bottom: 1rem;
}

.trust-bar ul {
    list-style: disc;
    margin-left: 2rem;
}

/* Process steps */
.process-steps {
    margin: 2rem 0;
}

.process-step {
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-number {
    background: #333;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    background: #fff;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 1.2rem;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

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

.submit-button {
    background: none;
    border: 2px solid #333;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.submit-button:hover {
    background: #f5f5f5;
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid #ddd;
}

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

.footer-logo {
    width: 120px;
    height: 40px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    text-decoration: underline;
    color: #333;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    text-decoration: underline;
    color: #666;
}

/* Contact info */
.contact-info {
    margin: 2rem 0;
}

.contact-info div {
    margin-bottom: 1rem;
}

/* Locations grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.location-card {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    background: #fff;
    text-decoration: none;
    color: #333;
}

.location-card:hover {
    background: #f9f9f9;
}

.location-image {
    height: 120px;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Project overview */
.project-overview {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 2rem;
    margin: 2rem 0;
}

.project-overview h3 {
    margin-bottom: 1rem;
}

.project-detail {
    margin-bottom: 1rem;
}

.project-detail strong {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}