/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004085;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #0056b3;
    border: 1px solid #0056b3;
}

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

.btn-phone {
    background-color: #28a745;
    color: #ffffff;
    padding: 10px 20px;
}

.btn-phone:hover {
    background-color: #218838;
}

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

.text-link {
    color: #0056b3;
    font-weight: 600;
}

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

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    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: bold;
    color: #0056b3;
}

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

.main-nav a {
    font-weight: 500;
    color: #555555;
}

.main-nav a:hover, .main-nav a.active {
    color: #0056b3;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: #f4f7f6;
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555555;
}

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

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.bg-light {
    background-color: #f9fbfd;
}

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

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-title p {
    color: #666666;
    font-size: 1.05rem;
}

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

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

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ed;
}

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

.card p {
    color: #666666;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ed;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-content p {
    color: #666666;
    margin-bottom: 20px;
}

.section-cta-box {
    margin-top: 50px;
    background: #eef4fb;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.section-cta-box p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Check list */
.check-list {
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444444;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Map box */
.map-box {
    background: #f4f7f6;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.map-box h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.map-box p {
    margin-bottom: 10px;
    color: #555555;
}

/* FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

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

.faq-item p {
    color: #666666;
}

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

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

.final-cta-section p {
    color: #e2e6ea;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Page Header */
.page-header {
    background: #f4f7f6;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.page-header p {
    color: #666666;
    font-size: 1.1rem;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-detail-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.service-detail-card p {
    color: #666666;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px 0;
}

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

.footer-col h3, .footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888888;
}

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

.mobile-call-btn {
    display: block;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    padding: 15px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .hero-container {
        flex-direction: column;
    }
    .grid-2, .grid-3, .faq-grid, .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
