
:root {
    --primary: #0b2545;
    --secondary: #134074;
    --accent: #c59b27;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

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

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

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

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

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

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

.top-phone {
    font-weight: bold;
}

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

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

.logo span {
    color: var(--secondary);
    display: block;
    font-size: 0.9rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

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

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

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.header-cta-btn {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

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

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

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

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Grids & Cards */
.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(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.link-arrow {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary);
    font-weight: 600;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

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

/* Footer */
.site-footer {
    background-color: #061528;
    color: var(--white);
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d97706;
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .main-nav, .top-bar, .header-cta-btn {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .mobile-cta-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
