:root {
    --primary: #132A51;
    --secondary: #776348;
    --highlight: #DEB841;
    --light: #F5F3F5;
    --dark: #141414;
}

html {
    scroll-padding-top: 120px;
}

body {
    font-family: "Poppins", sans-serif;
    background-image: url('../img/bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Poppins", sans-serif;
}

p {
    line-height: 1.7;
}

a {
    color: var(--primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--highlight);
}

footer {
    margin-top: auto;
}

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

.navbar {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.navbar .navbar-toggler {
    border: none;
    border-radius: 8px;
    padding: 0.35rem 0.45rem;
    box-shadow: none;
}

.navbar .navbar-toggler .toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.navbar-brand .brand-text {
    display: inline;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--highlight);
}

.navbar-brand img {
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1rem;
    }
}

.hero-img {
    display: block;
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .hero-img {
        display: none;
    }
}

.text-highlight {
    color: var(--highlight) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.service-card {
    transition: all 0.4s ease;
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(19, 42, 81, 0.18);
}

.service-card .service-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(222, 184, 65, 0.18);
    border: 1px solid rgba(222, 184, 65, 0.5);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
    transition: all 0.3s ease;
}

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

.service-card.highlight-target {
    box-shadow: 0 0 0 3px var(--highlight), 0 12px 28px rgba(19, 42, 81, 0.18);
    transform: translateY(-4px);
}

.service-card .service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    color: #5c6572;
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--highlight);
    font-size: 0.85rem;
}

.team-card {
    transition: all 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.team-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    height: 100%;
    min-height: 240px;
}

.team-card .card-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-card:hover .card-img-wrapper img {
    transform: none;
}

.team-card .role-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background-color: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-card .card-body {
    padding: 1.75rem;
}

.team-card .card-title {
    margin-bottom: 0.25rem;
}

.team-card .member-title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.team-card .card-text {
    color: #5c6572;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    font-size: 1.5rem;
}

.section-heading .heading-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.section-heading .heading-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight), transparent);
}

.page-header {
    background-color: var(--primary);
    color: #fff;
    padding: 3.5rem 0;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--highlight);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #414a56;
}

.about-blockquote {
    border-left: 4px solid var(--highlight);
    background-color: rgba(222, 184, 65, 0.1);
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary);
    font-weight: 500;
}

.feature-card {
    border: 1px solid rgba(19, 42, 81, 0.12);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(19, 42, 81, 0.18);
    border-color: rgba(222, 184, 65, 0.6);
}

.feature-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(222, 184, 65, 0.18);
    border: 1px solid rgba(222, 184, 65, 0.5);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, var(--primary), #1f3f75);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero .hero-img {
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero .btn-highlight {
    background-color: var(--highlight);
    color: var(--primary);
    border: none;
}

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

.home-feature-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
}

.home-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(19, 42, 81, 0.18);
}

.home-feature-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(222, 184, 65, 0.18);
    border: 1px solid rgba(222, 184, 65, 0.5);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.home-feature-card:hover .feature-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.home-feature-card .feature-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.home-feature-card .feature-desc {
    color: #5c6572;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section {
    background-color: var(--primary);
    color: #fff;
    padding: 3.5rem 0;
    margin-bottom: 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.cta-section .btn-highlight {
    background-color: var(--highlight);
    color: var(--primary);
    border: none;
}

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

.btn-outline-light {
    transition: all 0.25s ease;
}

.hero .btn-outline-light:hover,
.cta-section .btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.contact-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(19, 42, 81, 0.18);
}

.contact-card .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(222, 184, 65, 0.18);
    border: 1px solid rgba(222, 184, 65, 0.5);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.contact-card .contact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-card .contact-value {
    color: #414a56;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-card .contact-value a {
    color: #414a56;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card .contact-value a:hover {
    color: var(--highlight);
}

.social-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid rgba(19, 42, 81, 0.12);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.social-card i {
    font-size: 1.25rem;
}

.social-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(19, 42, 81, 0.18);
}

.work-hours-card {
    background: linear-gradient(135deg, var(--primary), #1f3f75);
    color: #fff;
    border-radius: 12px;
    padding: 2rem;
}

.work-hours-card h3 {
    color: #fff;
}

.work-hours-card .day-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.work-hours-card .day-row:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.08);
}

.work-hours-card .day-row strong {
    font-weight: 600;
}

.work-hours-card .day-row .hours {
    color: var(--highlight);
    font-weight: 700;
}

.site-footer {
    background-color: #0d0f14;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 4rem;
}

.site-footer h3,
.site-footer h5 {
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.site-footer h3::after,
.site-footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--highlight);
}

.site-footer .footer-about {
    line-height: 1.7;
}

.site-footer .footer-links li {
    margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .footer-links a:hover {
    color: var(--highlight);
    padding-left: 4px;
}

.site-footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.site-footer .footer-contact i {
    color: var(--highlight);
    margin-top: 0.25rem;
}

.site-footer .footer-tel {
    color: #fff;
    transition: color 0.2s ease;
}

.site-footer .footer-tel:hover {
    color: var(--highlight);
}

.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-footer .social-icons a:hover {
    background-color: var(--highlight);
    border-color: var(--highlight);
    color: var(--primary);
    transform: translateY(-3px);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.btn {
    font-size: 0.95rem;
}

.btn-lg {
    font-size: 1.1rem;
}

.btn-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--highlight);
    border: 1px solid var(--highlight);
    color: var(--primary);
    transition: all 0.25s ease;
}

.btn-highlight:hover,
.btn-highlight:focus {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}