/* Simple Solutions - Main Stylesheet */
/* Last updated: January 2025 */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    background: #fff;
}

*, *:before, *:after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0066cc;
}

h1, h2, h3 {
    color: #222;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5em;
}

h1 { font-size: 2.25em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.25em; }

p { margin: 0 0 1em; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-blue {
    background: #0055a5;
    color: #fff;
}

.btn-blue:hover {
    background: #004080;
    text-decoration: none;
}

.btn-white {
    background: #fff;
    color: #0055a5;
}

.btn-white:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

.btn-light {
    background: #eee;
    color: #333;
}

.btn-light:hover {
    background: #ddd;
    text-decoration: none;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 50;
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.main-nav a:hover {
    color: #0055a5;
}

.header-phone {
    color: #0055a5;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.header-phone:hover {
    text-decoration: underline;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}

/* Hero */
.hero {
    background: #1a3c5a;
    color: #fff;
    padding: 120px 20px 60px;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hero-main {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a3c7e8;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 16px;
}

.hero h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 18px;
    color: #c5d5e5;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: left;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: #8aa8c5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-sidebar {
    width: 320px;
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-sidebar h3 {
    color: #222;
    margin-bottom: 12px;
    font-size: 17px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background: #f7f7f7;
}

.section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 36px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 4px;
}

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

.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 10px;
}

.service-card a {
    font-size: 14px;
    font-weight: 600;
}

/* Why Section */
.why-section {
    padding: 60px 20px;
    background: #fff;
}

.why-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list strong {
    display: block;
    margin-bottom: 2px;
}

.why-list span {
    color: #666;
    font-size: 15px;
}

.why-cta {
    width: 340px;
    background: #1a3c5a;
    color: #fff;
    padding: 32px;
    border-radius: 4px;
    text-align: center;
    flex-shrink: 0;
}

.why-cta h3 {
    color: #fff;
    margin-bottom: 10px;
}

.why-cta p {
    color: #a3c7e8;
    margin-bottom: 16px;
}

.why-cta .big-phone {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.why-cta .big-phone a {
    color: #fff;
    text-decoration: none;
}

/* Areas Section */
.areas-section {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
}

.areas-section h2 {
    margin-bottom: 8px;
}

.areas-intro {
    color: #666;
    margin-bottom: 24px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.area-tag {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 14px;
    font-size: 14px;
    color: #555;
    border-radius: 3px;
}

.areas-note {
    display: inline-block;
    background: #fff8e5;
    border: 1px solid #f0d070;
    padding: 12px 20px;
    font-size: 15px;
    color: #7a5c00;
    border-radius: 4px;
}

.areas-cta {
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background: #1a3c5a;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-section p {
    color: #a3c7e8;
    margin-bottom: 24px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #112536;
    color: #8899aa;
    padding: 48px 20px 24px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-section h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 6px;
}

.footer-section a {
    color: #8899aa;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #223344;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Mobile Styles */
@media screen and (max-width: 960px) {
    .hero-sidebar {
        display: none;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        flex-direction: column;
    }
    
    .why-cta {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 680px) {
    .site-logo img {
        height: 40px;
        max-width: 180px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0;
        border-bottom: 1px solid #ddd;
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .main-nav a {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 1.75em;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}
