/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a202c;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #4a5568;
    font-weight: 500;
}

.main-nav a:hover, .main-nav a.active {
    color: #0056b3;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004085;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    text-decoration: none;
}

.btn-phone {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 10px 18px;
    font-size: 0.95rem;
}

.btn-phone:hover {
    background-color: #2c5282;
    color: #ffffff;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(26, 32, 44, 0.85), rgba(26, 32, 44, 0.85)), url('https://images.pexels.com/photos/8961099/pexels-photo-8961099.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    color: #ffffff;
    padding: 100px 0;
    text-align: left;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-inner {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 0;
}

.hero-inner h1 {
    font-size: 2.25rem;
    margin-bottom: 10px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f7fafc;
}

.section h2 {
    font-size: 2.1rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-lead {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Grid & Cards */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.align-center {
    align-items: center;
}

.card, .service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card h3, .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.card p, .service-card p {
    color: #4a5568;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* Check list */
.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #4a5568;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* Map Container */
.map-container {
    background: #edf2f7;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #cbd5e0;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.faq-item p {
    color: #4a5568;
}

/* CTA Section */
.cta-section {
    background-color: #2d3748;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 60px 0 30px 0;
}

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

.site-footer h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #a0aec0;
}

.site-footer a:hover {
    color: #ffffff;
}

.copyright {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #718096;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2b6cb0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    padding: 12px;
}

.mobile-call-btn {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    text-decoration: none;
}

.mobile-call-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Utility classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 25px; }
.mt-4 { margin-top: 35px; }
.text-large { font-size: 1.5rem; font-weight: 700; }

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mobile-cta-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}
