:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --secondary: #0f172a;
    --text: #334155;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --radius: 8px;
    --max-width: 1200px;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}

.header-cta .btn-phone {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background-color 0.2s;
}

.header-cta .btn-phone:hover {
    background-color: var(--primary-dark);
}

/* Hero */
.hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--primary-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #1e293b;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.section-title p {
    font-size: 1.125rem;
}

/* Grids & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    color: var(--secondary);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

.section-cta-box {
    margin-top: 3rem;
    background: #e0f2fe;
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}

.section-cta-box h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-cta-box p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.content-block p {
    margin-bottom: 1.25rem;
}

.cta-banner {
    background: var(--secondary);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2.5rem;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
}

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

.site-footer h3, .site-footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Mobile Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .grid-3, .grid-2, .footer-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .mobile-call-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
}
