
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-dark: #1e293b;
    --text-muted: #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 CTA bar */
}

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

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

/* Header */
.site-header {
    background: var(--white);
    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.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

.header-cta .btn-phone {
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f9ff, var(--white));
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
}

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

.hero-inner {
    background: #f0f9ff;
    padding: 60px 0;
    text-align: center;
}

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

.hero-inner p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

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

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

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

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

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

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* Cards & Boxes */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-muted);
}

.service-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

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

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
}

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

.cta-banner p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    opacity: 0.9;
}

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

.cta-banner .btn-primary:hover {
    background: var(--bg-light);
}

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

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

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

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

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

/* Location details */
.contact-details {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details li {
    font-size: 1.05rem;
}

.map-placeholder-box {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder-box h3 {
    margin-bottom: 15px;
}

.map-placeholder-box p {
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mobile-cta-bar {
        display: block;
    }
}
