:root {
    --primary-color: #0f2c59;
    --secondary-color: #337ab7;
    --accent-color: #ff6b35;
    --text-color: #333333;
    --bg-color: #ffffff;
    --light-bg: #f4f6f9;
    --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-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    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.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

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

.phone-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.phone-btn:hover {
    background: #091d3d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
}

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

.btn-primary:hover {
    background: #e85a28;
}

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

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

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Hero */
.hero-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-cta {
    color: var(--secondary-color);
    font-weight: 600;
}

.card-cta:hover {
    text-decoration: underline;
}

/* Banner */
.section-banner {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-banner h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 0.5rem;
}

.section-banner p {
    color: #cbd5e1;
    text-align: left;
    margin: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    text-align: left;
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    text-align: left;
    margin: 0;
    color: #555;
}

/* Map Section */
.map-section {
    background: var(--light-bg);
}

.location-address {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* Final CTA */
.final-cta-section {
    background: #fff;
}

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

/* Footer */
.site-footer {
    background: #091d3d;
    color: #cbd5e1;
    padding: 4rem 0 2rem 0;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col li a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color);
    z-index: 1001;
    text-align: center;
    padding: 0.8rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-bar a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hero-container, .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .banner-flex {
        flex-direction: column;
        align-items: flex-start;
    }

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

    body {
        padding-bottom: 60px;
    }
}