:root {
    --primary-color: #d91e18;
    --secondary-color: #ff7500;
    --dark-color: #1a1a1a;
    --top-bar-bg: #231f20;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.hero-section h1,
.hero-section h2,
.hero-section h3 {
    color: #fff !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.top-bar {
    background-color: var(--top-bar-bg);
    font-size: 0.85rem;
    font-weight: 300;
}

.navbar-brand .logo-placeholder {
    font-size: 1.8rem;
    border: 2px solid var(--primary-color);
    padding: 2px 10px;
    border-radius: 4px;
}

.navbar {
    background-color: var(--top-bar-bg) !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    border-bottom: 2px solid var(--primary-color);
}

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

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

/* Hero Section & Page Headers */
.header-pattern {
    background-color: #231f20;
    background-image: url('../pattern_gray.jpg');
    background-repeat: repeat;
}

.hero-section {
    position: relative;
    color: white;
    padding: 120px 0;
    margin-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Services Grid */
.service-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Partners List */
.partner-tag {
    background: #dfdfdf;
    color: var(--dark-color);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    display: inline-block;
    border-left: 4px solid var(--primary-color);
}

.alert-service {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none;
}

.alert-service h5,
.alert-service p,
.alert-service i {
    color: #fff !important;
}

/* Contact Page */
.contact-info-card {
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}