body {
    font-family: 'Lato', sans-serif;
}
h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
}
.gold-text {
    color: #C5A059;
}
.gold-bg {
    background-color: #C5A059;
}
.navy-bg {
    background-color: #0F172A;
}
/* Hover card effect like Geberindo but smoother */
.service-card {
    transition: all 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #C5A059;
}

.lang-switch-container {
    display: flex;
    border-radius: 9999px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.lang-switch {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.lang-switch.active {
    background-color: #C5A059;
    color: #ffffff;
}

.lang-switch:not(.active):hover {
    background-color: #e5e7eb;
}

/* Scroll to Top Hidden State */
#scrollToTop {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Active link style */
#desktop-menu a.active-link {
    color: #EAB308; /* Brighter Yellow */
    font-weight: bold !important; /* Bold */
}

/* For mobile nav, the color is the primary indicator */
.mobile-active-link i,
.mobile-active-link span {
    color: #C5A059 !important;
    font-weight: bold;
}
