
/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

h1, h2, h3, h4 { color: #0a2540; margin-bottom: 15px; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 25px; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 15px; }

.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: #555; }

/* ===== HEADER ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0a2540;
}

.logo span { color: #d4a017; }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: #d4a017; }

.btn-nav {
    background: #0a2540;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-nav:hover { background: #d4a017; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0a2540;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 { color: #fff; margin-bottom: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 30px; color: #e0e0e0; }

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.page-hero h1 { color: #fff; }
.page-hero p { font-size: 1.2rem; color: #d4a017; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #d4a017;
    color: #fff;
}

.btn-primary:hover { background: #b8890f; transform: translateY(-2px); }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover { background: #fff; color: #0a2540; }

.btn-white {
    background: #fff;
    color: #0a2540;
}

.btn-white:hover { background: #d4a017; color: #fff; }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
}

.bg-light { background: #f8f9fa; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #d4a017;
    border-radius: 5px;
}

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    padding: 30px;
    background: #fff;
    border-top: 4px solid #d4a017;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}

.serve-list {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-top: 20px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    max-width: 900px;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-detail h3 {
    color: #d4a017;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-detail h4 {
    margin-top: 25px;
    color: #0a2540;
}

.service-detail ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-detail ul li { margin-bottom: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    color: #fff;
    padding: 80px 20px;
}

.cta-section h2 { color: #fff; }
.cta-section p { font-size: 1.2rem; margin-bottom: 30px; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #d4a017;
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #0a2540;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a017;
}

.contact-form button {
    margin-top: 20px;
    width: auto;
}

/* ===== FAQ ===== */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #f8f9fa;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4a017;
}

.faq-item h3 {
    color: #0a2540;
    margin-bottom: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #0a2540;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3, footer h4 { color: #d4a017; margin-bottom: 15px; }

footer ul li { margin-bottom: 8px; }
footer a { color: #ccc; transition: color 0.3s; }
footer a:hover { color: #d4a017; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a3a5c;
    color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-links.active { display: flex; }
    
    .hero { padding: 60px 20px; }
    .hero p { font-size: 1.1rem; }
    
    .section { padding: 50px 20px; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
}

