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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

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

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

ul {
    list-style: none;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a365d;
}

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

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

.main-nav a:hover {
    color: #2b6cb0;
}

.header-cta .btn-phone {
    background-color: #2b6cb0;
    color: white;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.header-cta .btn-phone:hover {
    background-color: #2c5282;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a365d;
    padding: 12px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

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

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

.hero-content {
    flex: 1;
}

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

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

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

.hero-image {
    flex: 1;
}

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

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

.btn-primary {
    background-color: #2b6cb0;
    color: white;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #2b6cb0;
    border: 1px solid #2b6cb0;
}

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

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

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

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

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

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.card, .area-card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3, .area-card h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p, .area-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Service Detail Rows */
.services-detail-section {
    background: #ffffff;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.service-text p {
    color: #4a5568;
    margin-bottom: 15px;
}

.service-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
    color: #4a5568;
}

.service-text li {
    margin-bottom: 8px;
}

.text-link {
    color: #2b6cb0;
    font-weight: 600;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* CTA Banner */
.cta-banner {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e0;
}

.cta-banner .btn-primary {
    background-color: #3182ce;
}

.cta-banner .btn-primary:hover {
    background-color: #2b6cb0;
}

/* Service Areas */
.service-area-section {
    background: #f7fafc;
}

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

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

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

.faq-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
}

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

.contact-info, .contact-prompt {
    background: #f7fafc;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.contact-info h3, .contact-prompt h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #4a5568;
}

.contact-prompt p {
    color: #4a5568;
    margin-bottom: 25px;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    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 h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p, .footer-col li a {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive Design */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 900px) {
    .hero-container, .service-row, .service-row.reverse, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}
