﻿body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background: #ffffff;
}

.top-bar {
    background: #081c33;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

.firetex-navbar {
    background: #0b2c4d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffc107;
}

.brand-mark {
    display: inline-block;
    width: 34px;
    height: 34px;
    background: #ffc107;
    color: #0b2c4d;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    margin-right: 6px;
    font-weight: 800;
}

.hero-section {
    background: linear-gradient(135deg, #0b2c4d 0%, #123f6b 55%, #0d6efd 100%);
    color: #ffffff;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 50px 30px;
    backdrop-filter: blur(8px);
}

.hero-card i {
    font-size: 70px;
    color: #ffc107;
    margin-bottom: 25px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0b2c4d;
}

.section-subtitle {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #eef1f5;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #0b2c4d;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.trust-section {
    background: #0b2c4d;
    color: #ffffff;
    padding: 60px 0 35px;
}

.trust-section h3 {
    font-weight: 800;
    color: #ffc107;
    font-size: 34px;
}

.trust-section p {
    font-size: 16px;
    margin-bottom: 0;
}

.page-header {
    background: linear-gradient(135deg, #0b2c4d, #0d6efd);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    margin-bottom: 0;
}

.info-box,
.contact-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #eef1f5;
}

.info-box h4,
.contact-box h4 {
    color: #0b2c4d;
    font-weight: 700;
    margin-bottom: 25px;
}

.legal-content {
    max-width: 950px;
}

.legal-content h3 {
    color: #0b2c4d;
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
}

.footer {
    background: #081c33;
    color: #ffffff;
    padding: 60px 0 25px;
}

.footer h5 {
    color: #ffc107;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: #d9e2ec;
    line-height: 1.8;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d9e2ec;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffc107;
    text-decoration: none;
}

.footer-line {
    border-color: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 75px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .info-box,
    .contact-box {
        padding: 25px 20px;
    }
}