
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    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-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* space for mobile bar */
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

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

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

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

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

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-phone:hover, .btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

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

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.photo-credit {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 5px;
}

/* Services */
.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.link-inline {
    font-weight: 600;
}

/* Cost & FAQ */
.cost-guide ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.cost-guide li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.faq-item p {
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--text-dark);
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: #94a3b8;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 2rem;
}

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

.site-footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.site-footer a {
    color: #94a3b8;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: block;
    text-align: center;
    color: var(--white);
    padding: 14px;
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-call-btn:hover {
    color: var(--white);
    text-decoration: none;
}

@media(max-width: 768px) {
    .main-nav, .header-cta {
        display: none;
    }
    .hero-grid, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
