/*** ASD Theme Overrides — palette derived from img/logo.jpeg (green + rust accent) ***/
:root {
    --bs-primary: #0a7a2e;
    --bs-secondary: #7a4321;
}

/* Bootstrap utility classes hardcoded to old tan/brown/navy/indigo template colors */
.text-primary { color: #0a7a2e !important; }
.bg-primary { background-color: #0a7a2e !important; }
.border-primary { border-color: #0a7a2e !important; }
.btn-primary { color: #fff; background-color: #0a7a2e; border-color: #0a7a2e; }
.btn-primary:hover { background-color: #075e22; border-color: #075e22; }
.btn-outline-primary { color: #0a7a2e; border-color: #0a7a2e; }
.btn-outline-primary:hover { background-color: #0a7a2e; color: #fff; }
.text-secondary { color: #7a4321 !important; }
.bg-secondary { background-color: #7a4321 !important; }

/* style.css hardcoded accent colors */
.btn.btn-primary { box-shadow: inset 0 0 0 0 #0a7a2e; }
.btn.btn-primary:hover { color: #0a7a2e !important; }
.section-title { color: #0a7a2e; }
.about .container .section-about-title { color: #7a4321; }
.packages .packages-carousel .owl-nav .owl-prev,
.packages .packages-carousel .owl-nav .owl-next { border: 1px solid #0a7a2e; }
.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover { background: #0a7a2e; }
.navbar-light .navbar-nav .nav-link::before {
    background: #0a7a2e;
}
.bg-breadcrumb {
    background: #0a7a2e;
}
.bg-breadcrumb h3 {
    color: #fff !important;
}
.bg-breadcrumb .breadcrumb-item.active {
    color: #fff !important;
}
.bg-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
}
.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/*** Brand mark ***/
.navbar-brand img {
    height: 56px;
    width: auto;
    object-fit: contain;
}
.navbar-brand .brand-text-name {
    font-size: 20px;
    line-height: 1.1;
}
.navbar-brand .brand-text-tagline {
    font-size: 11px;
    letter-spacing: 1.5px;
}
@media (max-width: 575.98px) {
    .navbar-brand .brand-text-tagline {
        display: none;
    }
}

/*** Shared header utilities ***/
.nowrap {
    white-space: nowrap;
}

.whats-app {
    width: 50px;
    height: 50px;
    background-color: #0a7a2e;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    margin-left: 10px;
    border-radius: 50%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.whats-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 122, 46, 0.3);
    color: #fff;
}

/*** Modern card polish: hover lift + soft shadow ***/
.modern-card {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 4px 14px rgba(20, 20, 30, 0.06);
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 34px rgba(10, 122, 46, 0.18);
    border-color: #0a7a2e !important;
}
.modern-card i {
    transition: transform .35s ease;
}
.modern-card:hover i {
    transform: scale(1.12);
}

/*** Services page: consistent image box size ***/
.service-photo {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}
@media (max-width: 991.98px) {
    .service-photo {
        height: 280px;
    }
}

/*** Services page brand badge ***/
.services-logo-badge {
    width: 96px;
    height: 96px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(10, 122, 46, 0.2);
    margin-bottom: 18px;
}

/*** Section heading accent underline ***/
.section-title {
    font-weight: 600;
}

/*** Buttons / small modern touches ***/
.btn-hover-bg {
    transition: 0.35s;
}
.btn-hover-bg:hover {
    filter: brightness(1.08);
}
