:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #b91c1c;
    --light-gray: #f8f9fa;
    --dark-gray: #34495e;
    --red-color: #B91C1C;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: var(--light-gray);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 74px;
    width: auto;
}

.hero-section {
    position: relative;
    padding: 90px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-red {
    color: var(--red-color);
}

.text-dark {
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 500px;
}

.text-white {
    color: white !important;
}

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

.btn-custom {
    background-color: var(--red-color);
    border-color: var(--red-color);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #991b1b;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: white;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: #9ca3af;
    background-color: gainsboro;
    color: #374151;
    text-decoration: none;
}

.section-padding {
    padding: 80px 0;
}

.safety-dashboard {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--red-color);
    max-width: 400px;
    margin-left: auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 12px;
}

.status-text {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #6b7280;
}

.progress-value {
    font-weight: 600;
    color: #10b981;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #10b981;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.services-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "•";
    color: var(--red-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-section {
    background-color: white;
    padding: 100px 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.commitment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "•";
    color: var(--red-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.certifications-card {
    background: var(--red-color);
    border-radius: 16px;
    padding: 32px;
    color: white;
}

.certifications-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.certifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications-list li {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.certifications-list li:before {
    content: "•";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 107px;
    width: auto;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-tagline {
    color: #b91c1c;
    font-weight: bold;
    font-size: 1.425rem;
    margin-bottom: 0;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f87171;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item-footer svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item-footer span {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-divider {
    border-color: #334155;
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    align-items: center;
}

.copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #f87171;
}

.footer-contact a,
.contact-details a,
.contact-item-footer a {
    text-decoration: none !important;
    color: inherit;
}

.footer-contact a:hover,
.contact-details a:hover,
.contact-item-footer a:hover {
    text-decoration: underline;
    color: #f87171;
}

.contact-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    margin-top: 4px;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.emergency-support {
    background: var(--red-color);
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.emergency-support h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.emergency-support p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-emergency {
    background: white;
    color: var(--red-color);
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-emergency:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form-new .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form-new .form-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form-new .form-control:focus {
    border-color: var(--red-color);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.contact-form-new .form-control::placeholder {
    color: #9ca3af;
}

.btn-send-message {
    background: var(--red-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-send-message:hover {
    background: #991b1b;
    color: white;
}

.fixed-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
    display: none;
}

.fixed-badge .close-btn {
    margin-left: 10px;
    cursor: pointer;
    color: #fff;
    border: none;
    background: none;
    font-size: 14px;
}