:root {
    --primary-color: #eea115;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: #e5e5e5;
    --bg-light: #f9fdff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

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

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

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

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

/* Buttons */
.btn-primary-custom {
    border-radius: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Cards - Border 2px instead of Shadow */
.custom-card {
    border: 2px solid var(--border-color);
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: none !important;
    /* Enforce no shadow */
}

.custom-card:hover {
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('images/image-19.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px 0;
}

.filter-back {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(6px);
    z-index: 1;
}

/* Icons */
.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Stats Counter */
.counter-box {
    text-align: center;
    padding: 40px 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Form Styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
    color: var(--text-dark);
    box-shadow: none !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact__form--input__icon,
.contact__form--textarea__icon {
    display: none;
    /* Removing SVG icons inside inputs for cleaner bootstrap look, or can be adjusted via CSS absolute positioning */
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}