
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --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-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a:hover {
    text-decoration: underline;
}

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

.section-padding {
    padding: 60px 0;
}

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

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

.mt-4 {
    margin-top: 20px;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
    color: #ffffff;
}

.btn-secondary {
    background-color: #334155;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1e293b;
    text-decoration: none;
    color: #ffffff;
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
}

.btn-phone {
    background-color: #0f172a;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.btn-phone:hover {
    background-color: var(--primary);
    text-decoration: none;
    color: #ffffff;
}

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

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

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

.business-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

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

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

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

/* Hero */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f0f9ff, #e0f2fe);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

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

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

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

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card, .service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card h3, .service-card h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: #0f172a;
}

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

.section-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

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

/* Trust Section */
.flex-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.trust-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.map-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

.map-box h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

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

/* FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f172a;
}

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

/* Final CTA */
.final-cta-section {
    background-color: #0f172a;
    color: #ffffff;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.final-cta-section p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: #090d16;
    color: #94a3b8;
    padding: 60px 0 30px 0;
}

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

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

.footer-col p, .footer-col li a {
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

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

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.mobile-call-btn {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.page-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-header-section h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.page-header-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media(max-width: 900px) {
    .hero-container, .flex-layout, .grid-3, .grid-2, .footer-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
