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

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

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

ul {
    list-style: none;
}

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

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

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

.btn-primary {
    background-color: #0284c7;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

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

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    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.15rem;
    font-weight: 700;
    color: #0f172a;
}

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

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

.main-nav a:hover {
    color: #0284c7;
}

.btn-phone {
    font-weight: 700;
    color: #0284c7;
    background-color: #e0f2fe;
    padding: 10px 18px;
    border-radius: 4px;
    display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

.section-sub {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

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

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

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.card p {
    color: #475569;
}

/* Inline CTA Box */
.inline-cta-box {
    margin-top: 50px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inline-cta-box p {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0369a1;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 15px;
    color: #475569;
}

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

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

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

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Location & Info Box */
.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

.info-box p {
    margin-bottom: 10px;
    color: #475569;
}

.map-placeholder-card {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    text-align: center;
}

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

.map-placeholder-card p {
    color: #475569;
    margin-bottom: 10px;
}

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

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

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

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

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

.final-cta-section h2 {
    color: #ffffff;
}

.final-cta-section p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

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

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

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

.contact-details-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.contact-details-box p {
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    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;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

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

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

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

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

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0284c7;
    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: 700;
    font-size: 1.1rem;
    padding: 15px 0;
}

/* Responsive Design */
@media(max-width: 900px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .split-layout,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

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

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

    body {
        padding-bottom: 60px;
    }

    .inline-cta-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
