/* Corporate Blue & Orange Theme */
:root {
    --bs-primary: #003366; /* Corporate Blue */
    --bs-secondary: #00509E;
    --bs-warning: #FF8800; /* Corporate Orange */
    --bs-dark: #1A1A1A;
    --bs-light-gray: #F4F6F9;
}

body {
    font-family: 'Inter', sans-serif;
    color: #4a4a4a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

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

.text-warning { color: var(--bs-warning) !important; }
.bg-warning { background-color: var(--bs-warning) !important; }
.btn-warning {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
    color: #fff;
}
.btn-warning:hover {
    background-color: #e67a00;
    color: #fff;
}

/* Animations & Microinteractions */
.custom-hover {
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-hover:hover {
    color: var(--bs-warning) !important;
    transform: translateX(5px);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-hover .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,51,102,0.1);
    color: var(--bs-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.card-hover:hover .icon-circle {
    background-color: var(--bs-primary);
    color: white;
}

.hero-section {
    background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1541888086425-d81bb192a542?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 150px 0;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--bs-warning);
    bottom: 0;
    left: 0;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.cta-section {
    background-color: var(--bs-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,136,0,0.2) 0%, rgba(0,0,0,0) 70%);
}
