/* ==========================================================================
   Rapid Roll Maintenance - Option 5: Classic Corporate
   ========================================================================== */

/* --- Custom Variables & Typography --- */
:root {
    --primary-color: #0d47a1; /* Deep Industrial Blue */
    --primary-hover: #1565c0;
    --secondary-color: #6c757d; /* Slate Gray */
    --secondary-hover: #5c636a;
    --dark-color: #212529;
    --light-gray: #f8f9fa;
    --mid-gray: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    color: #495057;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

/* --- Color Overrides --- */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }

/* --- Buttons --- */
.btn {
    border-radius: 4px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

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

/* --- Navbar --- */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nav-link {
    color: #495057;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
    transition: color 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom: 2px solid var(--primary-hover);
}

/* --- Hero Section --- */
.hero-classic {
    position: relative;
    padding: 120px 0;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-classic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(33, 37, 41, 0.8) 100%);
}

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

.hero-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- About & Trust --- */
.trust-strip {
    background-color: #ffffff;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* --- Services Grid --- */
.service-card {
    background: #ffffff;
    border: 1px solid var(--mid-gray);
    border-radius: 6px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* --- Gallery --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
}

/* --- Footer --- */
.footer-classic {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-classic h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-classic a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-classic a:hover {
    color: #ffffff;
}

/* --- Custom File Input Styling --- */
input[type="file"].form-control {
    color: #6c757d; /* Mutes 'no file chosen' text */
    font-size: 0.9rem;
    line-height: 2; /* Vertically aligns text with button in form-control-lg */
}

input[type="file"].form-control::file-selector-button {
    background-color: #f1f3f5;
    color: #495057; /* Mutes the 'Choose file' button text */
    border-inline-end: 1px solid var(--mid-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

input[type="file"].form-control:hover::file-selector-button {
    background-color: var(--mid-gray);
    color: var(--dark-color);
}



