:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #334155;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-border: #cbd5e1;
}

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

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

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

a:hover {
    text-decoration: underline;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-phone {
    color: var(--white);
    font-weight: bold;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

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

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

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

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

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

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

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

.btn-secondary:hover {
    background-color: #1e293b;
    text-decoration: none;
    color: var(--white);
}

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

/* Hero */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f0f9ff, var(--white));
}

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

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

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

.badge {
    display: inline-block;
    background-color: #e0f2fe;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 2.75rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

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

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

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

.section-title h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.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-center {
    align-items: center;
}

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

.card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.cta-banner {
    background-color: #f8fafc;
    border: 2px dashed var(--primary);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
}

.cta-banner p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Service Boxes */
.service-box {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

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

.service-box-content {
    padding: 30px;
}

.service-box-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-box-content p {
    margin-bottom: 20px;
}

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

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

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

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Map Card */
.map-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.map-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.map-card p {
    margin-bottom: 15px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--gray-border);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background-color: #090d16;
    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 h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

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

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

.footer-col ul a:hover {
    color: var(--white);
}

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

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

.mobile-sticky-bar a {
    display: block;
    color: var(--white);
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .main-nav {
        display: none;
    }
    .grid-2, .faq-grid {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}