/* CSS Stylesheet */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.2s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    padding-bottom: 60px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.top-bar {
    background-color: #0f172a;
    color: #e2e8f0;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-contact a {
    color: #38bdf8;
    font-weight: 600;
}

.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    max-width: 250px;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    color: var(--text-main);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    display: inline-block;
    margin-top: 1rem;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.hero-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5rem 0;
}

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

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

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-link {
    font-weight: 600;
    color: var(--primary);
}

.services-section {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.trust-section {
    background-color: var(--bg-light);
}

.trust-flex {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.trust-content h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.trust-cta-wrap {
    margin-top: 2rem;
}

.trust-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.detail-box h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.detail-box p {
    color: var(--text-muted);
}

.faq-section {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.75rem;
}

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

.faq-item p {
    color: var(--text-muted);
}

.map-section {
    background-color: var(--bg-light);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-info-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.map-info-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.map-frame-box {
    width: 100%;
    min-height: 350px;
}

.map-frame-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.final-cta-section {
    background-color: #0f172a;
    color: white;
    padding: 6rem 0;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.site-footer {
    background-color: #090d16;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}

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

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-col p {
    margin-bottom: 0.75rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #94a3b8;
}

.footer-col a:hover {
    color: white;
}

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

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    border-top: 1px solid #334155;
    z-index: 999;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.mobile-call-btn {
    display: block;
    background-color: var(--primary);
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 6px;
}

.mobile-call-btn:hover {
    color: white;
    background-color: var(--primary-dark);
}

@media (max-width: 900px) {
    .hero-flex,
    .trust-flex,
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .main-nav,
    .header-phone {
        display: none;
    }

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