/* NWA Microsites - Clean, minimal stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* Header */
.header {
    background: #1a3a5c;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.logo a { color: #fff; text-decoration: none; font-size: 1.3em; font-weight: 700; }
.header-phone a { color: #ffd700; text-decoration: none; font-size: 1.2em; font-weight: 700; white-space: nowrap; }

.nav { margin-top: 10px; }
.nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; }
.nav a { color: #ccc; text-decoration: none; padding: 5px 10px; border-radius: 4px; font-size: 0.9em; }
.nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.hero h1 { font-size: 2.2em; margin-bottom: 15px; }
.hero-subtitle { font-size: 1.1em; margin-bottom: 25px; opacity: 0.9; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 0.9em; }

/* Buttons */
.cta-button, .cta-secondary {
    display: inline-block; padding: 12px 30px; border-radius: 6px;
    text-decoration: none; font-weight: 600; font-size: 1.05em;
}
.cta-button { background: #ffd700; color: #1a3a5c; }
.cta-button:hover { background: #e6c200; }
.cta-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.cta-secondary:hover { background: rgba(255,255,255,0.25); }

/* Sections */
section { padding: 50px 0; }
section:nth-child(even) { background: #f8f9fa; }
h2 { font-size: 1.5em; margin-bottom: 20px; color: #1a3a5c; }
p { margin-bottom: 15px; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.feature-card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.feature-icon { font-size: 2em; margin-bottom: 10px; }

/* Services list */
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-item { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* Areas grid */
.areas-grid, .areas-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.area-link { 
    display: block; padding: 12px; background: #fff; border: 1px solid #ddd;
    border-radius: 6px; text-decoration: none; color: #1a3a5c; text-align: center;
    font-weight: 500;
}
.area-link:hover { background: #e8f0fe; border-color: #1a3a5c; }
.area-card {
    background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}
.area-card h2 a { color: #1a3a5c; text-decoration: none; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); font-style: italic; }
.testimonial-card cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: #1a3a5c; }

/* FAQ */
.faq-list { display: grid; gap: 15px; }
.faq-item, .faq-item-full { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.faq-item h3 a, .faq-item-full h2 a { color: #1a3a5c; text-decoration: none; }
.faq-item-full { margin-bottom: 15px; }

/* CTA section */
.cta-section { background: #1a3a5c; color: #fff; text-align: center; }
.cta-section h2 { color: #fff; }
.center-cta { text-align: center; margin-top: 25px; }

/* Page header */
.page-header { background: #2a5a8c; color: #fff; padding: 40px 0; text-align: center; }
.page-header h1 { font-size: 1.8em; margin-bottom: 10px; }

/* Blog */
.blog-grid { display: grid; gap: 25px; }
.blog-card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.blog-card h2 a { color: #1a3a5c; text-decoration: none; }
.post-date { color: #666; font-size: 0.9em; }

/* Post content */
.post-content h2 { margin-top: 25px; }
.post-content ul, .about-text ul, .area-main ul { margin-bottom: 15px; padding-left: 20px; }
.post-content li, .about-text li, .area-main li { margin-bottom: 8px; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85em; color: #666; margin-bottom: 15px; }
.breadcrumb a { color: #1a3a5c; text-decoration: none; }

/* About page */
.about-grid, .area-grid, .contact-grid {
    display: grid; grid-template-columns: 2fr 1fr; gap: 30px;
}
@media (max-width: 768px) { .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; } }

.sidebar-card {
    background: #f0f4f8; padding: 20px; border-radius: 8px; margin-bottom: 20px;
}
.sidebar-card h3 { margin-bottom: 10px; color: #1a3a5c; }

/* Contact form */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 1em;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1a3a5c; outline: none; box-shadow: 0 0 0 2px rgba(26,58,92,0.1);
}
.form-note { margin-top: 10px; font-size: 0.9em; text-align: center; }

/* Footer */
.footer {
    background: #1a1a2e; color: #aaa; padding: 40px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h3 { color: #fff; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-phone a { color: #ffd700; font-size: 1.1em; font-weight: 700; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9em; }
.footer-bottom a { color: #aaa; text-decoration: none; }

/* Read more links */
.read-more { color: #1a3a5c; font-weight: 600; text-decoration: none; }
.read-more:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
    .hero h1 { font-size: 1.5em; }
    .header-top { flex-direction: column; text-align: center; }
    .nav ul { justify-content: center; }
    .hero-badges { flex-direction: column; align-items: center; }
}
