/* Reset & Base Styles */
*, *::before, *::after {
    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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.text-link {
    color: #0284c7;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.logo span {
    color: #0284c7;
    display: block;
    font-size: 0.9rem;
}

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

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

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

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

.hero-content p {
    font-size: 1.125rem;
    color: #334155;
    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.1);
}

/* Sections & Cards */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

.card p, .service-box p, .service-card p {
    color: #475569;
}

/* CTA Banner */
.cta-banner {
    background-color: #0f172a;
    color: #ffffff;
    padding: 80px 0;
}

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

.cta-banner p {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

/* Location */
.location-details {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.location-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #334155;
}

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

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

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

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.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-color: #0f172a;
    padding: 12px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    text-align: center;
}

.mobile-call-btn {
    display: block;
    background-color: #0284c7;
    color: #ffffff;
    font-weight: 700;
    padding: 12px;
    border-radius: 4px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container, .grid-3, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
    }
    .main-nav {
        display: none;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
