/* ==========================================================================
   Combined Light & Professional Theme
   ========================================================================== */

/* 1) Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* 2) Brand & Utility Variables */
:root {
    /* Softer Green Primary */
    --primary-color: #2E6A50;
    /* Muted Red Accent */
    --accent-color: #D62828;
    /* Pastel Interactive/Links */
    --interactive-color: #7ED3A1;
    /* Warm Beige Secondary */
    --secondary-color: #D0B392;
    /* Pure White Base */
    --white: #FFFFFF;

    /* Spacing & Typography Overrides */
    --bs-gutter-x: 2.5rem;
    --bs-body-line-height: 1.6;
}

/* 3) Global Reset & Typography */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif !important;
    line-height: var(--bs-body-line-height) !important;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F9F9F9;
    font-size: 1rem;
    overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-heading {
    font-size: 1.5rem !important;
}

/* Paragraphs & Small Text */
p {
    font-weight: 300;
    color: #1C4A34;
    line-height: 1.7;
}

/* Bubble Badge */
.bubble-heading {
    display: inline-block;
    background-color: rgba(214, 40, 40, 0.08);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* 4) Navbar */
.navbar {
    background-color: #F9F9F9;
    padding: 0.5rem 0;
}

.navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar-brand {
    margin-right: 2rem;
    padding: 0.5rem 0;
}

.navbar-nav .nav-item {
    margin: 0 1rem;
}

.navbar-nav .nav-link,
.dropdown-item,
.nav-buttons .btn,
.nav-buttons .btn-link {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1C4A34;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--interactive-color);
}

.dropdown-menu {
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #1C4A34;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    gap: 0.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(225, 79, 79, 0.2);
    border: none;
    color: var(--white) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.45rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.btn-outline-secondary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: #1C4A34;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
}

.btn-link:hover {
    color: var(--interactive-color);
}

/* 5) Forms */
.form-control {
    border: 1px solid #ccc !important;
}

.form-control:focus {
    border-color: var(--interactive-color) !important;
}

/* 6) Cards */
.card {
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

/* 7) Hero Banner */
.hero-banner {
    position: relative;
    background-blend-mode: overlay;
    background-position: center top 20%;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 60vh;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

/* 8) Footer & Sections */
section.bg-primary {
    background-color: var(--primary-color) !important;
}

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

/* 9) “More Services” Card */
.card-more-services {
    padding: 1.5rem;
}

.card-more-services .nav-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.card-more-services .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.card-more-services .btn {
    background-color: var(--interactive-color);
    color: var(--white);
    font-weight: 500;
    min-width: 140px;
    transition: background-color 0.2s ease;
}

.card-more-services .btn:hover {
    background-color: var(--primary-color);
}

/* 10) Info Card */
.info-card .row {
    margin: 0;
}

.info-card .col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-card .card-body {
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6C7482;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-card .btn {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}