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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

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

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

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

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    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: #f1f3f5;
    color: #333333;
    border: 1px solid #ced4da;
}

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

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

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

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    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: #0056b3;
}

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

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

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

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

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

.hero-text {
    flex: 1;
}

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

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

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-credit {
    display: block;
    font-size: 0.75rem;
    color: #888888;
    margin-top: 6px;
}

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

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

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

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

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

/* 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;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.card h3, .card p {
    padding: 0 20px;
}

.card h3 {
    margin-top: 20px;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.card p {
    margin: 15px 0 25px 0;
    color: #666666;
}

.section-cta-box {
    background: #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.section-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Services Overview */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #0056b3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-item p {
    color: #666666;
    font-size: 0.95rem;
}

/* Check list */
.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

/* Map container & contact box */
.map-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.map-container h3, .map-container h2 {
    margin-bottom: 15px;
}

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

.map-link-box {
    margin-top: 20px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

/* FAQ */
.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 #e9ecef;
}

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

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

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

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

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

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.service-card-detailed h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

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

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

.final-cta-section p {
    color: #e9ecef;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.final-cta-section .btn-primary:hover {
    background-color: #f1f3f5;
}

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

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

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

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

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

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

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

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

.mobile-call-btn {
    display: block;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive queries */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
    }

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

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

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