:root {
    --primary-color: #891F14;
    --primary-dark: #6a160e;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

section {
    scroll-margin-top: 100px;
}

/* Custom Colors */
.text-primary-custom {
    color: var(--primary-color) !important;
}

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

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

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

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.logo-img {
    height: 55px;
    width: auto;
    margin-right: 12px;
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(137, 31, 20, 0.85), rgba(40, 10, 5, 0.9)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    border-radius: 0;
    margin-bottom: 4rem;
    position: relative;
}

/* Hero Credit Styling */
.photo-credit {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    pointer-events: auto;
}

.photo-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.photo-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cards */
.service-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    padding: 1.5rem;
    border-bottom: 4px solid transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

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

/* Certificate Images */
.cert-container {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.cert-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

.cert-img:hover {
    transform: scale(1.02);
}

/* Map */
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
    border-top: 5px solid var(--primary-color);
}

/* REMOVED MARGIN RESET HERE SO UTILITY CLASSES WORK */
footer h5 {
    color: white;
    font-weight: 700;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

.footer-text-uniform {
    color: #999;
    font-size: 0.875em;
}